Home
last modified time | relevance | path

Searched refs:or_test (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar86 old_test: or_test | old_lambdef
89 test: or_test ['if' or_test 'else' test] | lambdef
90 or_test: and_test ('or' and_test)*
134 comp_for: 'for' exprlist 'in' or_test [comp_iter]
/external/python/cpython3/Grammar/
DGrammar86 test: or_test ['if' or_test 'else' test] | lambdef
87 test_nocond: or_test | lambdef_nocond
90 or_test: and_test ('or' and_test)*
142 sync_comp_for: 'for' exprlist 'in' or_test [comp_iter]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt91 old_test: or_test | old_lambdef
94 test: or_test ['if' or_test 'else' test] | lambdef
95 or_test: and_test ('or' and_test)*
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt107 old_test: or_test | old_lambdef
110 test: or_test ['if' or_test 'else' test] | lambdef
111 or_test: and_test ('or' and_test)*
/external/python/cpython3/Include/
Dgraminit.h56 #define or_test 309 macro
/external/python/cpython2/Include/
Dgraminit.h52 #define or_test 305 macro
/external/python/cpython2/Lib/
Dsymbol.py62 or_test = 305 variable
/external/python/cpython3/Lib/
Dsymbol.py66 or_test = 309 variable
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_has_key.py88 syms.or_test, syms.test, syms.lambdef, syms.argument):
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py89 syms.or_test, syms.test, syms.lambdef, syms.argument):
/external/python/cpython2/Lib/compiler/
Dtransformer.py606 def or_test(self, nodelist): member in Transformer
611 old_test = or_test
1430 symbol.or_test,
1507 symbol.or_test,
/external/python/cpython2/Doc/reference/
Dexpressions.rst187 old_expression: `or_test` | `old_lambda_expr`
225 comp_for: "for" `target_list` "in" `or_test` [`comp_iter`]
1319 or_test: `and_test` | `or_test` "or" `and_test`
1364 conditional_expression: `or_test` ["if" `or_test` "else" `expression`]
/external/python/cpython3/Doc/reference/
Dexpressions.rst183 comp_for: ["async"] "for" `target_list` "in" `or_test` [`comp_iter`]
1621 or_test: `and_test` | `or_test` "or" `and_test`
1668 conditional_expression: `or_test` ["if" `or_test` "else" `expression`]
1670 expression_nocond: `or_test` | `lambda_expr_nocond`
/external/python/cpython2/Modules/
Dparsermodule.c1015 VALIDATER(yield_or_testlist); VALIDATER(or_test);
2250 int res = validate_ntype(tree, or_test) && is_odd(nch); in validate_or_test()
/external/python/cpython2/Python/
Dast.c1862 case or_test: in ast_for_expr()
/external/python/cpython3/Python/
Dast.c2568 case or_test: in ast_for_expr()