Searched refs:withitem_ty (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 396 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 689 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.With.items); in astfold_stmt() 693 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.AsyncWith.items); in astfold_stmt() 734 astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_withitem()
|
D | symtable.c | 209 static int symtable_visit_withitem(struct symtable *st, withitem_ty item); 1776 symtable_visit_withitem(struct symtable *st, withitem_ty item) in symtable_visit_withitem()
|
D | Python-ast.c | 1909 static int obj2ast_withitem(astmodulestate *state, PyObject* obj, withitem_ty* 3339 withitem_ty 3342 withitem_ty p; in withitem() 3348 p = (withitem_ty)PyArena_Malloc(arena, sizeof(*p)); in withitem() 4824 withitem_ty o = (withitem_ty)_o; in ast2obj_withitem() 6344 withitem_ty val; in obj2ast_stmt() 6438 withitem_ty val; in obj2ast_stmt() 9532 obj2ast_withitem(astmodulestate *state, PyObject* obj, withitem_ty* out, in obj2ast_withitem()
|
D | ast.c | 408 withitem_ty item = asdl_seq_GET(stmt->v.With.items, i); in validate_stmt() 418 withitem_ty item = asdl_seq_GET(stmt->v.AsyncWith.items, i); in validate_stmt() 4252 static withitem_ty 4300 withitem_ty item = ast_for_with_item(c, CHILD(n, i)); in ast_for_with_stmt()
|
D | compile.c | 4829 withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos); in compiler_async_with() 4931 withitem_ty item = asdl_seq_GET(s->v.With.items, pos); in compiler_with()
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 45 typedef struct _withitem *withitem_ty; typedef 684 withitem_ty _Py_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena
|
/external/python/cpython3/Grammar/ |
D | python.gram | 184 with_item[withitem_ty]:
|
/external/python/cpython3/Parser/pegen/ |
D | parse.c | 428 static withitem_ty with_item_rule(Parser *p); 4294 static withitem_ty 4302 withitem_ty _res = NULL; in with_item_rule() 17847 withitem_ty elem; in _loop0_40_rule() 17911 withitem_ty elem; in _gather_39_rule() 17961 withitem_ty elem; in _loop0_42_rule() 18025 withitem_ty elem; in _gather_41_rule() 18075 withitem_ty elem; in _loop0_44_rule() 18139 withitem_ty elem; in _gather_43_rule() 18189 withitem_ty elem; in _loop0_46_rule() [all …]
|