Searched refs:AugStore (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 2366 case AugStore: in compiler_nameop() 2388 case AugStore: in compiler_nameop() 2404 case AugStore: in compiler_nameop() 2419 case AugStore: in compiler_nameop() 3036 if (e->v.Attribute.ctx != AugStore) in compiler_visit_expr() 3045 case AugStore: in compiler_visit_expr() 3071 case AugStore: in compiler_visit_expr() 3072 VISIT_SLICE(c, e->v.Subscript.slice, AugStore); in compiler_visit_expr() 3117 auge->v.Attribute.ctx = AugStore; in compiler_augassign() 3128 auge->v.Subscript.ctx = AugStore; in compiler_augassign() [all …]
|
D | ast.c | 385 assert(ctx != AugStore && ctx != AugLoad); in set_context()
|
D | Python-ast.c | 2947 case AugStore: in ast2obj_expr_context() 5965 *out = AugStore; in obj2ast_expr_context()
|
/external/python/cpython3/Python/ |
D | compile.c | 3218 case AugStore: in compiler_nameop() 3234 case AugStore: in compiler_nameop() 3250 case AugStore: in compiler_nameop() 3265 case AugStore: in compiler_nameop() 4493 if (e->v.Attribute.ctx != AugStore) in compiler_visit_expr() 4502 case AugStore: in compiler_visit_expr() 4528 case AugStore: in compiler_visit_expr() 4529 VISIT_SLICE(c, e->v.Subscript.slice, AugStore); in compiler_visit_expr() 4586 auge->v.Attribute.ctx = AugStore; in compiler_augassign() 4597 auge->v.Subscript.ctx = AugStore; in compiler_augassign() [all …]
|
D | ast.c | 99 case AugStore: in expr_context_name() 980 assert(ctx != AugStore && ctx != AugLoad); in set_context()
|
D | Python-ast.c | 3496 case AugStore: in ast2obj_expr_context() 7172 *out = AugStore; in obj2ast_expr_context()
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 86 expr_context = Load | Store | Del | AugLoad | AugStore | Param
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 98 expr_context = Load | Store | Del | AugLoad | AugStore | Param
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 11 typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5, enumerator
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 11 typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5, enumerator
|