Lines Matching refs:ast2obj_list
547 static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) in ast2obj_list() function
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()
2212 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2217 value = ast2obj_list(o->v.FunctionDef.decorator_list, in ast2obj_stmt()
2233 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()
2238 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2243 value = ast2obj_list(o->v.ClassDef.decorator_list, in ast2obj_stmt()
2263 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()
2272 value = ast2obj_list(o->v.Assign.targets, ast2obj_expr); in ast2obj_stmt()
2310 value = ast2obj_list(o->v.Print.values, ast2obj_expr); 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()
2430 value = ast2obj_list(o->v.TryExcept.handlers, 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()
2473 value = ast2obj_list(o->v.Import.names, ast2obj_alias); in ast2obj_stmt()
2487 value = ast2obj_list(o->v.ImportFrom.names, ast2obj_alias); in ast2obj_stmt()
2520 value = ast2obj_list(o->v.Global.names, ast2obj_identifier); in ast2obj_stmt()
2584 value = ast2obj_list(o->v.BoolOp.values, ast2obj_expr); in ast2obj_expr()
2659 value = ast2obj_list(o->v.Dict.keys, ast2obj_expr); in ast2obj_expr()
2664 value = ast2obj_list(o->v.Dict.values, ast2obj_expr); in ast2obj_expr()
2673 value = ast2obj_list(o->v.Set.elts, ast2obj_expr); in ast2obj_expr()
2687 value = ast2obj_list(o->v.ListComp.generators, in ast2obj_expr()
2702 value = ast2obj_list(o->v.SetComp.generators, in ast2obj_expr()
2722 value = ast2obj_list(o->v.DictComp.generators, in ast2obj_expr()
2737 value = ast2obj_list(o->v.GeneratorExp.generators, in ast2obj_expr()
2772 value = ast2obj_list(o->v.Compare.comparators, ast2obj_expr); in ast2obj_expr()
2786 value = ast2obj_list(o->v.Call.args, ast2obj_expr); in ast2obj_expr()
2791 value = ast2obj_list(o->v.Call.keywords, ast2obj_keyword); in ast2obj_expr()
2889 value = ast2obj_list(o->v.List.elts, ast2obj_expr); in ast2obj_expr()
2903 value = ast2obj_list(o->v.Tuple.elts, ast2obj_expr); in ast2obj_expr()
2996 value = ast2obj_list(o->v.ExtSlice.dims, ast2obj_slice); in ast2obj_slice()
3161 value = ast2obj_list(o->ifs, ast2obj_expr); in ast2obj_comprehension()
3197 value = ast2obj_list(o->v.ExceptHandler.body, ast2obj_stmt); in ast2obj_excepthandler()
3233 value = ast2obj_list(o->args, ast2obj_expr); in ast2obj_arguments()
3248 value = ast2obj_list(o->defaults, ast2obj_expr); in ast2obj_arguments()