Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dcompile.c2364 case AugStore: in compiler_nameop()
2386 case AugStore: in compiler_nameop()
2403 case AugStore: in compiler_nameop()
2418 case AugStore: in compiler_nameop()
3035 if (e->v.Attribute.ctx != AugStore) in compiler_visit_expr()
3044 case AugStore: in compiler_visit_expr()
3070 case AugStore: in compiler_visit_expr()
3071 VISIT_SLICE(c, e->v.Subscript.slice, AugStore); in compiler_visit_expr()
3116 auge->v.Attribute.ctx = AugStore; in compiler_augassign()
3127 auge->v.Subscript.ctx = AugStore; in compiler_augassign()
[all …]
Dast.c385 assert(ctx != AugStore && ctx != AugLoad); in set_context()
DPython-ast.c2947 case AugStore: in ast2obj_expr_context()
5965 *out = AugStore; in obj2ast_expr_context()
/external/python/cpython2/Parser/
DPython.asdl86 expr_context = Load | Store | Del | AugLoad | AugStore | Param
/external/python/cpython2/Include/
DPython-ast.h11 typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5, enumerator