Searched refs:IsNot (Results 1 – 10 of 10) sorted by relevance
/third_party/mindspore/mindspore/_extends/parse/ |
D | resources.py | 64 ast.IsNot: (trope_ns, 'is_not'),
|
/third_party/python/Parser/ |
D | Python.asdl | 104 cmpop = Eq | NotEq | Lt | LtE | Gt | GtE | Is | IsNot | In | NotIn
|
D | parser.c | 12939 _res = _PyPegen_cmpop_expr_pair ( p , IsNot , a ); in isnot_bitwise_or_rule()
|
/third_party/python/Python/ |
D | ast_opt.c | 58 op = IsNot; in fold_unaryop() 60 case IsNot: in fold_unaryop()
|
D | ast_unparse.c | 497 case IsNot: in append_ast_compare()
|
D | compile.c | 2587 if (op == Is || op == IsNot) { in check_compare() 2625 case IsNot: in compiler_addcompare()
|
D | Python-ast.c | 4762 case IsNot: in ast2obj_cmpop() 9882 *out = IsNot; in obj2ast_cmpop()
|
/third_party/python/Include/internal/ |
D | pycore_ast.h | 31 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8, enumerator
|
/third_party/python/Grammar/ |
D | python.gram | 630 isnot_bitwise_or[CmpopExprPair*]: 'is' 'not' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, IsNot, a) }
|
/third_party/python/Doc/library/ |
D | ast.rst | 477 IsNot
|