Lines Matching refs:stmt_ty

162 static int compiler_visit_stmt(struct compiler *, stmt_ty);
165 static int compiler_augassign(struct compiler *, stmt_ty);
179 static int compiler_with(struct compiler *, stmt_ty);
1151 compiler_isdocstring(stmt_ty s) in compiler_isdocstring()
1164 stmt_ty st; in compiler_body()
1168 st = (stmt_ty)asdl_seq_GET(stmts, 0); in compiler_body()
1177 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1352 compiler_function(struct compiler *c, stmt_ty s) in compiler_function()
1358 stmt_ty st; in compiler_function()
1371 st = (stmt_ty)asdl_seq_GET(s->v.FunctionDef.body, 0); in compiler_function()
1387 st = (stmt_ty)asdl_seq_GET(s->v.FunctionDef.body, i); in compiler_function()
1406 compiler_class(struct compiler *c, stmt_ty s) in compiler_class()
1539 compiler_print(struct compiler *c, stmt_ty s) in compiler_print()
1576 compiler_if(struct compiler *c, stmt_ty s) in compiler_if()
1616 compiler_for(struct compiler *c, stmt_ty s) in compiler_for()
1644 compiler_while(struct compiler *c, stmt_ty s) in compiler_while()
1765 compiler_try_finally(struct compiler *c, stmt_ty s) in compiler_try_finally()
1824 compiler_try_except(struct compiler *c, stmt_ty s) in compiler_try_except()
1910 compiler_import(struct compiler *c, stmt_ty s) in compiler_import()
1965 compiler_from_import(struct compiler *c, stmt_ty s) in compiler_from_import()
2039 compiler_assert(struct compiler *c, stmt_ty s) in compiler_assert()
2075 compiler_visit_stmt(struct compiler *c, stmt_ty s) in compiler_visit_stmt()
2902 compiler_with(struct compiler *c, stmt_ty s) in compiler_with()
3101 compiler_augassign(struct compiler *c, stmt_ty s) in compiler_augassign()