Lines Matching refs:orelse

1431                   find_ann(st->v.For.orelse);  in find_ann()
1435 find_ann(st->v.AsyncFor.orelse); in find_ann()
1439 find_ann(st->v.While.orelse); in find_ann()
1443 find_ann(st->v.If.orelse); in find_ann()
1461 find_ann(st->v.Try.orelse); in find_ann()
2166 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond)) in compiler_jump_if()
2235 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
2308 if (s->v.If.orelse) in compiler_if()
2309 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2313 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2323 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2326 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2356 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
2435 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_async_for()
2445 basicblock *loop, *orelse, *end, *anchor = NULL; in compiler_while() local
2449 if (s->v.While.orelse) in compiler_while()
2450 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
2462 if (s->v.While.orelse) { in compiler_while()
2463 orelse = compiler_new_block(c); in compiler_while()
2464 if (orelse == NULL) in compiler_while()
2468 orelse = NULL; in compiler_while()
2489 if (orelse != NULL) /* what if orelse is just pass? */ in compiler_while()
2490 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
2631 basicblock *body, *orelse, *except, *end; in compiler_try_except() local
2636 orelse = compiler_new_block(c); in compiler_try_except()
2638 if (body == NULL || except == NULL || orelse == NULL || end == NULL) in compiler_try_except()
2647 ADDOP_JREL(c, JUMP_FORWARD, orelse); in compiler_try_except()
2739 compiler_use_next_block(c, orelse); in compiler_try_except()
2740 VISIT_SEQ(c, stmt, s->v.Try.orelse); in compiler_try_except()