Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c276 static PyObject* ast2obj_expr_context(expr_context_ty);
2847 value = ast2obj_expr_context(o->v.Attribute.ctx); in ast2obj_expr()
2866 value = ast2obj_expr_context(o->v.Subscript.ctx); in ast2obj_expr()
2880 value = ast2obj_expr_context(o->v.Name.ctx); in ast2obj_expr()
2894 value = ast2obj_expr_context(o->v.List.ctx); in ast2obj_expr()
2908 value = ast2obj_expr_context(o->v.Tuple.ctx); in ast2obj_expr()
2932 PyObject* ast2obj_expr_context(expr_context_ty o) in ast2obj_expr_context() function
/external/python/cpython3/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