Lines Matching refs:orelse
1684 find_ann(st->v.For.orelse); in find_ann()
1688 find_ann(st->v.AsyncFor.orelse); in find_ann()
1692 find_ann(st->v.While.orelse); in find_ann()
1696 find_ann(st->v.If.orelse); in find_ann()
1714 find_ann(st->v.Try.orelse); in find_ann()
2687 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond)) in compiler_jump_if()
2759 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
2836 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2849 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2852 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2887 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
2940 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_async_for()
2976 if (s->v.While.orelse) { in compiler_while()
2977 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
3163 basicblock *body, *orelse, *except, *end; in compiler_try_except() local
3168 orelse = compiler_new_block(c); in compiler_try_except()
3170 if (body == NULL || except == NULL || orelse == NULL || end == NULL) in compiler_try_except()
3179 ADDOP_JUMP_NOLINE(c, JUMP_FORWARD, orelse); in compiler_try_except()
3277 compiler_use_next_block(c, orelse); in compiler_try_except()
3278 VISIT_SEQ(c, stmt, s->v.Try.orelse); in compiler_try_except()