Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_ast.h807 withitem_ty _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars,
/third_party/python/Grammar/
Dpython.gram205 | 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/
DPython-ast.c3355 _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/
Dparser.c4880 _res = _PyAST_withitem ( e , t , p -> arena ); in with_item_rule()
4923 _res = _PyAST_withitem ( e , NULL , p -> arena ); in with_item_rule()