Searched refs:_PyAST_withitem (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_ast.h | 807 withitem_ty _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars,
|
/third_party/python/Grammar/ |
D | python.gram | 205 | e=expression 'as' t=star_target &(',' | ')' | ':') { _PyAST_withitem(e, t, p->arena) } 207 | e=expression { _PyAST_withitem(e, NULL, p->arena) }
|
/third_party/python/Python/ |
D | Python-ast.c | 3355 _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena *arena) in _PyAST_withitem() function 10854 *out = _PyAST_withitem(context_expr, optional_vars, arena); in obj2ast_withitem()
|
/third_party/python/Parser/ |
D | parser.c | 4880 _res = _PyAST_withitem ( e , t , p -> arena ); in with_item_rule() 4923 _res = _PyAST_withitem ( e , NULL , p -> arena ); in with_item_rule()
|