Searched refs:compiler_push_fblock (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/python/cpython2/Python/ |
D | compile.c | 169 static int compiler_push_fblock(struct compiler *, enum fblocktype, 1626 if (!compiler_push_fblock(c, LOOP, start)) in compiler_for() 1673 if (!compiler_push_fblock(c, LOOP, loop)) in compiler_while() 1775 if (!compiler_push_fblock(c, FINALLY_TRY, body)) in compiler_try_finally() 1783 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally() 1837 if (!compiler_push_fblock(c, EXCEPT, body)) in compiler_try_except() 2922 if (!compiler_push_fblock(c, FINALLY_TRY, block)) { in compiler_with() 2943 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with() 3147 compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b) in compiler_push_fblock() function
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | compile.c | 1932 compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b, in compiler_push_fblock() function 2035 if (!compiler_push_fblock(c, POP_VALUE, NULL, NULL, NULL)) { in compiler_unwind_fblock() 3111 if (!compiler_push_fblock(c, FOR_LOOP, start, end, NULL)) { in compiler_for() 3155 if (!compiler_push_fblock(c, FOR_LOOP, start, end, NULL)) { in compiler_async_for() 3202 if (!compiler_push_fblock(c, WHILE_LOOP, loop, end, NULL)) { in compiler_while() 3363 if (!compiler_push_fblock(c, FINALLY_TRY, body, end, s->v.Try.finalbody)) in compiler_try_finally() 3382 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally() 3415 if (!compiler_push_fblock(c, FINALLY_TRY, body, end, s->v.TryStar.finalbody)) { in compiler_try_star_finally() 3436 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) { in compiler_try_star_finally() 3491 if (!compiler_push_fblock(c, TRY_EXCEPT, body, NULL, NULL)) in compiler_try_except() [all …]
|