Lines Matching refs:ast2obj_list
701 static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) in ast2obj_list() function
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()
2645 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2650 value = ast2obj_list(o->v.FunctionDef.decorator_list, ast2obj_expr); in ast2obj_stmt()
2674 value = ast2obj_list(o->v.AsyncFunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2679 value = ast2obj_list(o->v.AsyncFunctionDef.decorator_list, in ast2obj_stmt()
2699 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()
2704 value = ast2obj_list(o->v.ClassDef.keywords, ast2obj_keyword); in ast2obj_stmt()
2709 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2714 value = ast2obj_list(o->v.ClassDef.decorator_list, ast2obj_expr); in ast2obj_stmt()
2732 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()
2741 value = ast2obj_list(o->v.Assign.targets, ast2obj_expr); 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()
2884 value = ast2obj_list(o->v.With.items, ast2obj_withitem); in ast2obj_stmt()
2889 value = ast2obj_list(o->v.With.body, ast2obj_stmt); in ast2obj_stmt()
2898 value = ast2obj_list(o->v.AsyncWith.items, ast2obj_withitem); 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()
2931 value = ast2obj_list(o->v.Try.handlers, ast2obj_excepthandler); 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()
2964 value = ast2obj_list(o->v.Import.names, ast2obj_alias); in ast2obj_stmt()
2978 value = ast2obj_list(o->v.ImportFrom.names, ast2obj_alias); in ast2obj_stmt()
2992 value = ast2obj_list(o->v.Global.names, ast2obj_identifier); in ast2obj_stmt()
3001 value = ast2obj_list(o->v.Nonlocal.names, ast2obj_identifier); in ast2obj_stmt()
3064 value = ast2obj_list(o->v.BoolOp.values, ast2obj_expr); in ast2obj_expr()
3139 value = ast2obj_list(o->v.Dict.keys, ast2obj_expr); in ast2obj_expr()
3144 value = ast2obj_list(o->v.Dict.values, ast2obj_expr); in ast2obj_expr()
3153 value = ast2obj_list(o->v.Set.elts, ast2obj_expr); in ast2obj_expr()
3167 value = ast2obj_list(o->v.ListComp.generators, ast2obj_comprehension); in ast2obj_expr()
3181 value = ast2obj_list(o->v.SetComp.generators, ast2obj_comprehension); in ast2obj_expr()
3200 value = ast2obj_list(o->v.DictComp.generators, ast2obj_comprehension); in ast2obj_expr()
3214 value = ast2obj_list(o->v.GeneratorExp.generators, in ast2obj_expr()
3267 value = ast2obj_list(o->v.Compare.comparators, ast2obj_expr); in ast2obj_expr()
3281 value = ast2obj_list(o->v.Call.args, ast2obj_expr); in ast2obj_expr()
3286 value = ast2obj_list(o->v.Call.keywords, ast2obj_keyword); in ast2obj_expr()
3332 value = ast2obj_list(o->v.JoinedStr.values, ast2obj_expr); in ast2obj_expr()
3438 value = ast2obj_list(o->v.List.elts, ast2obj_expr); in ast2obj_expr()
3452 value = ast2obj_list(o->v.Tuple.elts, ast2obj_expr); in ast2obj_expr()
3540 value = ast2obj_list(o->v.ExtSlice.dims, ast2obj_slice); in ast2obj_slice()
3707 value = ast2obj_list(o->ifs, ast2obj_expr); in ast2obj_comprehension()
3747 value = ast2obj_list(o->v.ExceptHandler.body, ast2obj_stmt); in ast2obj_excepthandler()
3782 value = ast2obj_list(o->args, ast2obj_arg); in ast2obj_arguments()
3792 value = ast2obj_list(o->kwonlyargs, ast2obj_arg); in ast2obj_arguments()
3797 value = ast2obj_list(o->kw_defaults, ast2obj_expr); in ast2obj_arguments()
3807 value = ast2obj_list(o->defaults, ast2obj_expr); in ast2obj_arguments()