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);
1142 compiler_isdocstring(stmt_ty s) in compiler_isdocstring()
1155 stmt_ty st; in compiler_body()
1159 st = (stmt_ty)asdl_seq_GET(stmts, 0); in compiler_body()
1168 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1343 compiler_function(struct compiler *c, stmt_ty s) in compiler_function()
1349 stmt_ty st; in compiler_function()
1362 st = (stmt_ty)asdl_seq_GET(s->v.FunctionDef.body, 0); in compiler_function()
1378 st = (stmt_ty)asdl_seq_GET(s->v.FunctionDef.body, i); in compiler_function()
1397 compiler_class(struct compiler *c, stmt_ty s) in compiler_class()
1530 compiler_print(struct compiler *c, stmt_ty s) in compiler_print()
1567 compiler_if(struct compiler *c, stmt_ty s) in compiler_if()
1607 compiler_for(struct compiler *c, stmt_ty s) in compiler_for()
1635 compiler_while(struct compiler *c, stmt_ty s) in compiler_while()
1756 compiler_try_finally(struct compiler *c, stmt_ty s) in compiler_try_finally()
1815 compiler_try_except(struct compiler *c, stmt_ty s) in compiler_try_except()
1902 compiler_import(struct compiler *c, stmt_ty s) in compiler_import()
1958 compiler_from_import(struct compiler *c, stmt_ty s) in compiler_from_import()
2037 compiler_assert(struct compiler *c, stmt_ty s) in compiler_assert()
2073 compiler_visit_stmt(struct compiler *c, stmt_ty s) in compiler_visit_stmt()
2901 compiler_with(struct compiler *c, stmt_ty s) in compiler_with()
3100 compiler_augassign(struct compiler *c, stmt_ty s) in compiler_augassign()