Searched refs:VISIT_SLICE (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 1123 #define VISIT_SLICE(C, V, CTX) {\ macro 3065 VISIT_SLICE(c, e->v.Subscript.slice, AugLoad); in compiler_visit_expr() 3069 VISIT_SLICE(c, e->v.Subscript.slice, Load); in compiler_visit_expr() 3072 VISIT_SLICE(c, e->v.Subscript.slice, AugStore); in compiler_visit_expr() 3076 VISIT_SLICE(c, e->v.Subscript.slice, Store); in compiler_visit_expr() 3080 VISIT_SLICE(c, e->v.Subscript.slice, Del); in compiler_visit_expr()
|
/external/python/cpython3/Python/ |
D | compile.c | 1340 #define VISIT_SLICE(C, V, CTX) {\ macro 4522 VISIT_SLICE(c, e->v.Subscript.slice, AugLoad); in compiler_visit_expr() 4526 VISIT_SLICE(c, e->v.Subscript.slice, Load); in compiler_visit_expr() 4529 VISIT_SLICE(c, e->v.Subscript.slice, AugStore); in compiler_visit_expr() 4533 VISIT_SLICE(c, e->v.Subscript.slice, Store); in compiler_visit_expr() 4537 VISIT_SLICE(c, e->v.Subscript.slice, Del); in compiler_visit_expr()
|