Lines Matching refs:ast2obj_stmt
39 static PyObject* ast2obj_stmt(void*);
2147 value = ast2obj_list(o->v.Module.body, ast2obj_stmt); in ast2obj_mod()
2156 value = ast2obj_list(o->v.Interactive.body, ast2obj_stmt); in ast2obj_mod()
2174 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt); in ast2obj_mod()
2189 ast2obj_stmt(void* _o) in ast2obj_stmt() function
2212 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2238 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2334 value = ast2obj_list(o->v.For.body, ast2obj_stmt); in ast2obj_stmt()
2339 value = ast2obj_list(o->v.For.orelse, ast2obj_stmt); in ast2obj_stmt()
2353 value = ast2obj_list(o->v.While.body, ast2obj_stmt); in ast2obj_stmt()
2358 value = ast2obj_list(o->v.While.orelse, ast2obj_stmt); in ast2obj_stmt()
2372 value = ast2obj_list(o->v.If.body, ast2obj_stmt); in ast2obj_stmt()
2377 value = ast2obj_list(o->v.If.orelse, ast2obj_stmt); in ast2obj_stmt()
2397 value = ast2obj_list(o->v.With.body, ast2obj_stmt); in ast2obj_stmt()
2425 value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt); in ast2obj_stmt()
2436 value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt); in ast2obj_stmt()
2445 value = ast2obj_list(o->v.TryFinally.body, ast2obj_stmt); in ast2obj_stmt()
2450 value = ast2obj_list(o->v.TryFinally.finalbody, ast2obj_stmt); in ast2obj_stmt()
3197 value = ast2obj_list(o->v.ExceptHandler.body, ast2obj_stmt); in ast2obj_excepthandler()