Home
last modified time | relevance | path

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

/third_party/python/Python/
DPython-ast.c629 static PyObject* ast2obj_expr_context(struct ast_state *state, expr_context_ty);
4514 value = ast2obj_expr_context(state, o->v.Attribute.ctx); in ast2obj_expr()
4534 value = ast2obj_expr_context(state, o->v.Subscript.ctx); in ast2obj_expr()
4549 value = ast2obj_expr_context(state, o->v.Starred.ctx); in ast2obj_expr()
4564 value = ast2obj_expr_context(state, o->v.Name.ctx); in ast2obj_expr()
4579 value = ast2obj_expr_context(state, o->v.List.ctx); in ast2obj_expr()
4594 value = ast2obj_expr_context(state, o->v.Tuple.ctx); in ast2obj_expr()
4648 PyObject* ast2obj_expr_context(struct ast_state *state, expr_context_ty o) in ast2obj_expr_context() function