Home
last modified time | relevance | path

Searched refs:_PyAST_Yield (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ast.h748 expr_ty _PyAST_Yield(expr_ty value, int lineno, int col_offset, int end_lineno,
/third_party/python/Grammar/
Dpython.gram744 | 'yield' a=[star_expressions] { _PyAST_Yield(a, EXTRA) }
/third_party/python/Python/
DPython-ast.c2878 _PyAST_Yield(expr_ty value, int lineno, int col_offset, int end_lineno, int in _PyAST_Yield() function
8746 *out = _PyAST_Yield(value, lineno, col_offset, end_lineno, in obj2ast_expr()
/third_party/python/Parser/
Dparser.c16270 _res = _PyAST_Yield ( a , EXTRA ); in yield_expr_rule()