Home
last modified time | relevance | path

Searched refs:yield_expr (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar37 expr_stmt: testlist (augassign (yield_expr|testlist) |
38 ('=' (yield_expr|testlist))*)
50 yield_stmt: yield_expr
103 atom: ('(' [yield_expr|testlist_comp] ')' |
142 yield_expr: 'yield' [testlist]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt38 expr_stmt: testlist_star_expr (annassign | augassign (yield_expr|testlist) |
39 ('=' (yield_expr|testlist_star_expr))*)
53 yield_stmt: yield_expr
109 atom: ('(' [yield_expr|testlist_gexp] ')' |
153 yield_expr: 'yield' [yield_arg]
/external/python/cpython3/Grammar/
DGrammar41 expr_stmt: testlist_star_expr (annassign | augassign (yield_expr|testlist) |
42 ('=' (yield_expr|testlist_star_expr))*)
54 yield_stmt: yield_expr
107 atom: ('(' [yield_expr|testlist_comp] ')' |
149 yield_expr: 'yield' [yield_arg]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt56 expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) |
57 ('=' (yield_expr|testlist_star_expr))*)
70 yield_stmt: yield_expr
125 atom: ('(' [yield_expr|testlist_gexp] ')' |
169 yield_expr: 'yield' [yield_arg]
/external/python/cpython3/Include/
Dgraminit.h88 #define yield_expr 341 macro
/external/python/cpython2/Include/
Dgraminit.h87 #define yield_expr 340 macro
/external/python/cpython2/Lib/
Dsymbol.py97 yield_expr = 340 variable
/external/python/cpython3/Lib/
Dsymbol.py98 yield_expr = 341 variable
/external/python/cpython2/Modules/
Dparsermodule.c1014 VALIDATER(testlist_comp); VALIDATER(yield_expr);
1667 if (TYPE(tree) == yield_expr) in validate_yield_or_testlist()
1822 int res = (validate_ntype(tree, yield_expr) in validate_yield_expr()
2534 if (TYPE(CHILD(tree, 1))==yield_expr) in validate_atom()
3275 case yield_expr: in validate_node()
/external/python/cpython2/Lib/compiler/
Dtransformer.py421 def yield_expr(self, nodelist): member in Transformer
1503 _legal_node_types.append(symbol.yield_expr)
/external/python/cpython2/Python/
Dast.c1418 if (TYPE(ch) == yield_expr) in ast_for_atom()
1952 case yield_expr: { in ast_for_expr()
2245 if (TYPE(ch) == yield_expr) { in ast_for_expr_stmt()
/external/python/cpython3/Python/
Dast.c2157 if (TYPE(ch) == yield_expr) in ast_for_atom()
2660 case yield_expr: { in ast_for_expr()
3029 if (TYPE(ch) == yield_expr) { in ast_for_expr_stmt()