Home
last modified time | relevance | path

Searched refs:yield_stmt (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h26 #define yield_stmt 279 macro
/external/python/cpython2/Lib/
Dsymbol.py36 yield_stmt = 279 variable
/external/python/cpython2/Grammar/
DGrammar46 flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt
50 yield_stmt: yield_expr
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt66 flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt
70 yield_stmt: yield_expr
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g182 | yield_stmt
194 yield_stmt: 'yield' testlist
/external/python/cpython2/Modules/
Dparsermodule.c969 VALIDATER(listmaker); VALIDATER(yield_stmt);
1796 return (validate_ntype(tree, yield_stmt) in validate_yield_stmt()
3144 || (TYPE(CHILD(tree, 0)) == yield_stmt) in validate_node()
3152 case yield_stmt: in validate_node()
/external/python/cpython2/Lib/compiler/
Dtransformer.py417 def yield_stmt(self, nodelist): member in Transformer
1501 _legal_node_types.append(symbol.yield_stmt)
/external/python/cpython2/Doc/reference/
Dsimple_stmts.rst23 : | `yield_stmt`
500 yield_stmt: `yield_expression`
/external/python/cpython2/Python/
Dast.c2364 case yield_stmt: { /* will reduce to yield_expr */ in ast_for_flow_stmt()