Home
last modified time | relevance | path

Searched refs:not_test (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_has_key.py74 if (node.parent.type == syms.not_test and
87 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
Dfix_idioms.py108 test = Node(syms.not_test, [Name("not"), test])
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py75 if (node.parent.type == syms.not_test and
88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
Dfix_idioms.py108 test = Node(syms.not_test, [Name(u"not"), test])
/external/python/cpython2/Grammar/
DGrammar91 and_test: not_test ('and' not_test)*
92 not_test: 'not' not_test | comparison
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt97 and_test: not_test ('and' not_test)*
98 not_test: 'not' not_test | comparison
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt112 and_test: not_test ('and' not_test)*
113 not_test: 'not' not_test | comparison
/external/python/cpython3/Grammar/
DGrammar136 and_test: not_test ('and' not_test)*
137 not_test: 'not' not_test | comparison
/external/python/cpython2/Include/
Dgraminit.h54 #define not_test 307 macro
/external/python/cpython3/Include/
Dgraminit.h59 #define not_test 312 macro
/external/python/cpython3/Lib/
Dsymbol.py80 not_test = 312 variable
/external/python/cpython2/Lib/
Dsymbol.py64 not_test = 307 variable
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g263 : not_test ('and' not_test)*
266 not_test
267 : 'not' not_test
/external/python/cpython2/Demo/parser/
Dexample.py176 (symbol.not_test,
/external/python/cpython2/Lib/compiler/
Dtransformer.py617 def not_test(self, nodelist): member in Transformer
1432 symbol.not_test,
1486 symbol.not_test,
1509 symbol.not_test,
/external/python/cpython2/Modules/
Dparsermodule.c1001 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/
Dexpressions.rst1320 and_test: `not_test` | `and_test` "and" `not_test`
1321 not_test: `comparison` | "not" `not_test`
/external/python/cpython3/Doc/reference/
Dexpressions.rst1622 and_test: `not_test` | `and_test` "and" `not_test`
1623 not_test: `comparison` | "not" `not_test`
/external/python/cpython3/Python/
Dast.c2819 case not_test: in ast_for_expr()
3083 not_test, in ast_for_call()
/external/python/cpython2/Python/
Dast.c1882 case not_test: in ast_for_expr()