Searched refs:not_test (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 74 if (node.parent.type == syms.not_test and 87 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
|
D | fix_idioms.py | 108 test = Node(syms.not_test, [Name("not"), test])
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 75 if (node.parent.type == syms.not_test and 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
|
D | fix_idioms.py | 108 test = Node(syms.not_test, [Name(u"not"), test])
|
/external/python/cpython2/Grammar/ |
D | Grammar | 91 and_test: not_test ('and' not_test)* 92 not_test: 'not' not_test | comparison
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 97 and_test: not_test ('and' not_test)* 98 not_test: 'not' not_test | comparison
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 112 and_test: not_test ('and' not_test)* 113 not_test: 'not' not_test | comparison
|
/external/python/cpython3/Grammar/ |
D | Grammar | 136 and_test: not_test ('and' not_test)* 137 not_test: 'not' not_test | comparison
|
/external/python/cpython2/Include/ |
D | graminit.h | 54 #define not_test 307 macro
|
/external/python/cpython3/Include/ |
D | graminit.h | 59 #define not_test 312 macro
|
/external/python/cpython3/Lib/ |
D | symbol.py | 80 not_test = 312 variable
|
/external/python/cpython2/Lib/ |
D | symbol.py | 64 not_test = 307 variable
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 263 : not_test ('and' not_test)* 266 not_test 267 : 'not' not_test
|
/external/python/cpython2/Demo/parser/ |
D | example.py | 176 (symbol.not_test,
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 617 def not_test(self, nodelist): member in Transformer 1432 symbol.not_test, 1486 symbol.not_test, 1509 symbol.not_test,
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1001 VALIDATER(not_test); VALIDATER(comparison); 2284 int res = validate_ntype(tree, not_test) && ((nch == 1) || (nch == 2)); in validate_not_test() 3287 case not_test: in validate_node()
|
/external/python/cpython2/Doc/reference/ |
D | expressions.rst | 1320 and_test: `not_test` | `and_test` "and" `not_test` 1321 not_test: `comparison` | "not" `not_test`
|
/external/python/cpython3/Doc/reference/ |
D | expressions.rst | 1622 and_test: `not_test` | `and_test` "and" `not_test` 1623 not_test: `comparison` | "not" `not_test`
|
/external/python/cpython3/Python/ |
D | ast.c | 2819 case not_test: in ast_for_expr() 3083 not_test, in ast_for_call()
|
/external/python/cpython2/Python/ |
D | ast.c | 1882 case not_test: in ast_for_expr()
|