Home
last modified time | relevance | path

Searched refs:boolean_ops (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/python/cpython2/Misc/Vim/
Dvim_syntax.py30 boolean_ops = ('and', 'in', 'is', 'not', 'or') variable
84 if kw not in (looping + conditionals + boolean_ops +
95 ("Operator", "pythonOperator", "keyword", boolean_ops),
/aosp_15_r20/external/pytorch/torch/fx/experimental/
H A Dvalidator.py249 boolean_ops = {operator.not_, operator.and_, operator.or_}
250 as_bool = op in boolean_ops
/aosp_15_r20/external/pytorch/torch/_inductor/codegen/
H A Dcommon.py272 def boolean_ops(): function
317 if op_name in boolean_ops():
/aosp_15_r20/external/pytorch/test/inductor/
H A Dtest_torchinductor.py9303 from torch._inductor.codegen.common import boolean_ops
9360 elif node.target in boolean_ops():