Home
last modified time | relevance | path

Searched refs:withitem_ty (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Python/
Dast_opt.c425 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, int optimize_);
744 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.With.items); in astfold_stmt()
748 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.AsyncWith.items); in astfold_stmt()
789 astfold_withitem(withitem_ty node_, PyArena *ctx_, int optimize_) in astfold_withitem()
DPython-ast.c1188 static int obj2ast_withitem(PyObject* obj, withitem_ty* out, PyArena* arena);
2550 withitem_ty
2553 withitem_ty p; in withitem()
2559 p = (withitem_ty)PyArena_Malloc(arena, sizeof(*p)); in withitem()
3916 withitem_ty o = (withitem_ty)_o; in ast2obj_withitem()
5163 withitem_ty val; in obj2ast_stmt()
5235 withitem_ty val; in obj2ast_stmt()
8109 obj2ast_withitem(PyObject* obj, withitem_ty* out, PyArena* arena) in obj2ast_withitem()
Dsymtable.c199 static int symtable_visit_withitem(struct symtable *st, withitem_ty item);
1612 symtable_visit_withitem(struct symtable *st, withitem_ty item) in symtable_visit_withitem()
Dast.c434 withitem_ty item = asdl_seq_GET(stmt->v.With.items, i); in validate_stmt()
444 withitem_ty item = asdl_seq_GET(stmt->v.AsyncWith.items, i); in validate_stmt()
3849 static withitem_ty
3887 withitem_ty item = ast_for_with_item(c, CHILD(n, i)); in ast_for_with_stmt()
Dcompile.c4237 withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos); in compiler_async_with()
4334 withitem_ty item = asdl_seq_GET(s->v.With.items, pos); in compiler_with()
/external/python/cpython3/Include/
DPython-ast.h39 typedef struct _withitem *withitem_ty; typedef
632 withitem_ty _Py_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena