Lines Matching refs:SLICE
727 case SLICE+0:
729 case SLICE+1:
731 case SLICE+2:
733 case SLICE+3:
3065 VISIT_SLICE(c, e->v.Subscript.slice, AugLoad);
3069 VISIT_SLICE(c, e->v.Subscript.slice, Load);
3072 VISIT_SLICE(c, e->v.Subscript.slice, AugStore);
3076 VISIT_SLICE(c, e->v.Subscript.slice, Store);
3080 VISIT_SLICE(c, e->v.Subscript.slice, Del);
3121 auge = Subscript(e->v.Subscript.value, e->v.Subscript.slice,
3247 if (s->v.Slice.lower) {
3248 VISIT(c, expr, s->v.Slice.lower);
3254 if (s->v.Slice.upper) {
3255 VISIT(c, expr, s->v.Slice.upper);
3261 if (s->v.Slice.step) {
3263 VISIT(c, expr, s->v.Slice.step);
3274 assert(s->v.Slice.step == NULL);
3275 if (s->v.Slice.lower) {
3279 VISIT(c, expr, s->v.Slice.lower);
3281 if (s->v.Slice.upper) {
3285 VISIT(c, expr, s->v.Slice.upper);
3305 case Load: op = SLICE; break;
3312 "param invalid in simple slice");
3336 "extended slice invalid in nested slice");
3360 kindname = "slice";
3361 if (!s->v.Slice.step)
3369 kindname = "extended slice";