Lines Matching refs:stmt_ty
272 static int compiler_visit_stmt(struct compiler *, stmt_ty);
275 static int compiler_augassign(struct compiler *, stmt_ty);
276 static int compiler_annassign(struct compiler *, stmt_ty);
284 static int compiler_with(struct compiler *, stmt_ty, int);
285 static int compiler_async_with(struct compiler *, stmt_ty, int);
286 static int compiler_async_for(struct compiler *, stmt_ty);
290 static int compiler_try_except(struct compiler *, stmt_ty);
306 static int compiler_match(struct compiler *, stmt_ty);
1675 stmt_ty st; in find_ann()
1678 st = (stmt_ty)asdl_seq_GET(stmts, i); in find_ann()
1826 SET_LOC(c, (stmt_ty)info->fb_datum); in compiler_unwind_fblock()
1902 stmt_ty st; in compiler_body()
1910 st = (stmt_ty)asdl_seq_GET(stmts, 0); in compiler_body()
1924 st = (stmt_ty)asdl_seq_GET(stmts, 0); in compiler_body()
1932 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
2317 compiler_function(struct compiler *c, stmt_ty s, int is_async) in compiler_function()
2394 VISIT_IN_SCOPE(c, stmt, (stmt_ty)asdl_seq_GET(body, i)); in compiler_function()
2423 compiler_class(struct compiler *c, stmt_ty s) in compiler_class()
2828 compiler_if(struct compiler *c, stmt_ty s) in compiler_if()
2859 compiler_for(struct compiler *c, stmt_ty s) in compiler_for()
2894 compiler_async_for(struct compiler *c, stmt_ty s) in compiler_async_for()
2948 compiler_while(struct compiler *c, stmt_ty s) in compiler_while()
2985 compiler_return(struct compiler *c, stmt_ty s) in compiler_return()
3093 compiler_try_finally(struct compiler *c, stmt_ty s) in compiler_try_finally()
3161 compiler_try_except(struct compiler *c, stmt_ty s) in compiler_try_except()
3284 compiler_try(struct compiler *c, stmt_ty s) { in compiler_try()
3333 compiler_import(struct compiler *c, stmt_ty s) in compiler_import()
3379 compiler_from_import(struct compiler *c, stmt_ty s) in compiler_from_import()
3443 compiler_assert(struct compiler *c, stmt_ty s) in compiler_assert()
3500 compiler_visit_stmt(struct compiler *c, stmt_ty s) in compiler_visit_stmt()
5009 compiler_async_with(struct compiler *c, stmt_ty s, int pos) in compiler_async_with()
5111 compiler_with(struct compiler *c, stmt_ty s, int pos) in compiler_with()
5333 compiler_augassign(struct compiler *c, stmt_ty s) in compiler_augassign()
5407 check_annotation(struct compiler *c, stmt_ty s) in check_annotation()
5456 compiler_annassign(struct compiler *c, stmt_ty s) in compiler_annassign()
6360 compiler_match_inner(struct compiler *c, stmt_ty s, pattern_context *pc) in compiler_match_inner()
6438 compiler_match(struct compiler *c, stmt_ty s) in compiler_match()