Home
last modified time | relevance | path

Searched refs:NotIn (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Python/
Dast_opt.c64 op = NotIn; in fold_unaryop()
66 case NotIn: in fold_unaryop()
396 if (op == In || op == NotIn) { in fold_compare()
Dast_unparse.c503 case NotIn: in append_ast_compare()
DPython-ast.c4768 case NotIn: in ast2obj_cmpop()
9898 *out = NotIn; in obj2ast_cmpop()
Dcompile.c2631 case NotIn: in compiler_addcompare()
/third_party/python/Parser/
DPython.asdl104 cmpop = Eq | NotEq | Lt | LtE | Gt | GtE | Is | IsNot | In | NotIn
Dparser.c12842 _res = _PyPegen_cmpop_expr_pair ( p , NotIn , a ); in notin_bitwise_or_rule()
/third_party/python/Include/internal/
Dpycore_ast.h32 In=9, NotIn=10 } cmpop_ty; enumerator
/third_party/python/Grammar/
Dpython.gram628 notin_bitwise_or[CmpopExprPair*]: 'not' 'in' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, NotIn, a) }
/third_party/python/Doc/library/
Dast.rst479 NotIn