Lines Matching refs:ast2obj_stmt
35 static PyObject* ast2obj_stmt(void*);
2581 value = ast2obj_list(o->v.Module.body, ast2obj_stmt); in ast2obj_mod()
2590 value = ast2obj_list(o->v.Interactive.body, ast2obj_stmt); in ast2obj_mod()
2608 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt); in ast2obj_mod()
2623 ast2obj_stmt(void* _o) in ast2obj_stmt() function
2645 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2674 value = ast2obj_list(o->v.AsyncFunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2709 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2808 value = ast2obj_list(o->v.For.body, ast2obj_stmt); in ast2obj_stmt()
2813 value = ast2obj_list(o->v.For.orelse, ast2obj_stmt); in ast2obj_stmt()
2832 value = ast2obj_list(o->v.AsyncFor.body, ast2obj_stmt); in ast2obj_stmt()
2837 value = ast2obj_list(o->v.AsyncFor.orelse, ast2obj_stmt); in ast2obj_stmt()
2851 value = ast2obj_list(o->v.While.body, ast2obj_stmt); in ast2obj_stmt()
2856 value = ast2obj_list(o->v.While.orelse, ast2obj_stmt); in ast2obj_stmt()
2870 value = ast2obj_list(o->v.If.body, ast2obj_stmt); in ast2obj_stmt()
2875 value = ast2obj_list(o->v.If.orelse, ast2obj_stmt); in ast2obj_stmt()
2889 value = ast2obj_list(o->v.With.body, ast2obj_stmt); in ast2obj_stmt()
2903 value = ast2obj_list(o->v.AsyncWith.body, ast2obj_stmt); in ast2obj_stmt()
2926 value = ast2obj_list(o->v.Try.body, ast2obj_stmt); in ast2obj_stmt()
2936 value = ast2obj_list(o->v.Try.orelse, ast2obj_stmt); in ast2obj_stmt()
2941 value = ast2obj_list(o->v.Try.finalbody, ast2obj_stmt); in ast2obj_stmt()
3747 value = ast2obj_list(o->v.ExceptHandler.body, ast2obj_stmt); in ast2obj_excepthandler()