Home
last modified time | relevance | path

Searched refs:compiler_push_fblock (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dcompile.c186 static int compiler_push_fblock(struct compiler *, enum fblocktype,
2344 if (!compiler_push_fblock(c, LOOP, start)) in compiler_for()
2392 if (!compiler_push_fblock(c, LOOP, try)) in compiler_async_for()
2402 if (!compiler_push_fblock(c, EXCEPT, try)) in compiler_async_for()
2472 if (!compiler_push_fblock(c, LOOP, loop)) in compiler_while()
2574 if (!compiler_push_fblock(c, FINALLY_TRY, body)) in compiler_try_finally()
2588 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally()
2642 if (!compiler_push_fblock(c, EXCEPT, body)) in compiler_try_except()
2694 if (!compiler_push_fblock(c, FINALLY_TRY, cleanup_body)) in compiler_try_except()
2705 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end)) in compiler_try_except()
[all …]
/external/python/cpython2/Python/
Dcompile.c169 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