Home
last modified time | relevance | path

Searched refs:and_test (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar90 or_test: and_test ('or' and_test)*
91 and_test: not_test ('and' not_test)*
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt111 or_test: and_test ('or' and_test)*
112 and_test: not_test ('and' not_test)*
/external/python/cpython2/Include/
Dgraminit.h53 #define and_test 306 macro
/external/python/cpython2/Lib/
Dsymbol.py63 and_test = 306 variable
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g258 test: and_test ('or' and_test)*
262 and_test
/external/python/cpython2/Demo/parser/
Dexample.py175 (symbol.and_test,
/external/python/cpython2/Lib/compiler/
Dtransformer.py613 def and_test(self, nodelist): member in Transformer
1431 symbol.and_test,
1485 symbol.and_test,
1508 symbol.and_test,
/external/python/cpython2/Modules/
Dparsermodule.c958 VALIDATER(test); VALIDATER(and_test);
2226 int res = (validate_ntype(tree, and_test) in validate_and_test()
3242 case and_test: in validate_node()
/external/python/cpython2/Doc/reference/
Dexpressions.rst1213 or_test: `and_test` | `or_test` "or" `and_test`
1214 and_test: `not_test` | `and_test` "and" `not_test`
/external/python/cpython2/Python/
Dast.c1863 case and_test: in ast_for_expr()