• Home
  • Raw
  • Download

Lines Matching refs:orelse

1575                   find_ann(st->v.For.orelse);  in find_ann()
1579 find_ann(st->v.AsyncFor.orelse); in find_ann()
1583 find_ann(st->v.While.orelse); in find_ann()
1587 find_ann(st->v.If.orelse); in find_ann()
1605 find_ann(st->v.Try.orelse); in find_ann()
2565 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond)) in compiler_jump_if()
2635 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
2715 if (s->v.If.orelse) { in compiler_if()
2716 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2720 if (s->v.If.orelse) { in compiler_if()
2722 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2726 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2738 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2741 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2773 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
2822 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_async_for()
2832 basicblock *loop, *orelse, *end, *anchor = NULL; in compiler_while() local
2847 if (s->v.While.orelse) { in compiler_while()
2848 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
2861 if (s->v.While.orelse) { in compiler_while()
2862 orelse = compiler_new_block(c); in compiler_while()
2863 if (orelse == NULL) in compiler_while()
2867 orelse = NULL; in compiler_while()
2887 if (orelse != NULL) /* what if orelse is just pass? */ in compiler_while()
2888 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
3055 basicblock *body, *orelse, *except, *end; in compiler_try_except() local
3060 orelse = compiler_new_block(c); in compiler_try_except()
3062 if (body == NULL || except == NULL || orelse == NULL || end == NULL) in compiler_try_except()
3071 ADDOP_JREL(c, JUMP_FORWARD, orelse); in compiler_try_except()
3163 compiler_use_next_block(c, orelse); in compiler_try_except()
3164 VISIT_SEQ(c, stmt, s->v.Try.orelse); in compiler_try_except()