Searched refs:compiler_push_fblock (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 169 static int compiler_push_fblock(struct compiler *, enum fblocktype, 1617 if (!compiler_push_fblock(c, LOOP, start)) in compiler_for() 1664 if (!compiler_push_fblock(c, LOOP, loop)) in compiler_while() 1766 if (!compiler_push_fblock(c, FINALLY_TRY, body)) in compiler_try_finally() 1774 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally() 1828 if (!compiler_push_fblock(c, EXCEPT, body)) in compiler_try_except() 2921 if (!compiler_push_fblock(c, FINALLY_TRY, block)) { in compiler_with() 2942 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with() 3146 compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b) in compiler_push_fblock() function
|