Lines Matching refs:ast2obj_expr

158 static PyObject* ast2obj_expr(void*);
2165 value = ast2obj_expr(o->v.Expression.body); in ast2obj_mod()
2218 ast2obj_expr); in ast2obj_stmt()
2233 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()
2244 ast2obj_expr); in ast2obj_stmt()
2254 value = ast2obj_expr(o->v.Return.value); 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()
2277 value = ast2obj_expr(o->v.Assign.value); in ast2obj_stmt()
2286 value = ast2obj_expr(o->v.AugAssign.target); in ast2obj_stmt()
2296 value = ast2obj_expr(o->v.AugAssign.value); in ast2obj_stmt()
2305 value = ast2obj_expr(o->v.Print.dest); in ast2obj_stmt()
2310 value = ast2obj_list(o->v.Print.values, ast2obj_expr); in ast2obj_stmt()
2324 value = ast2obj_expr(o->v.For.target); in ast2obj_stmt()
2329 value = ast2obj_expr(o->v.For.iter); in ast2obj_stmt()
2348 value = ast2obj_expr(o->v.While.test); in ast2obj_stmt()
2367 value = ast2obj_expr(o->v.If.test); in ast2obj_stmt()
2386 value = ast2obj_expr(o->v.With.context_expr); in ast2obj_stmt()
2391 value = ast2obj_expr(o->v.With.optional_vars); in ast2obj_stmt()
2406 value = ast2obj_expr(o->v.Raise.type); in ast2obj_stmt()
2411 value = ast2obj_expr(o->v.Raise.inst); in ast2obj_stmt()
2416 value = ast2obj_expr(o->v.Raise.tback); in ast2obj_stmt()
2459 value = ast2obj_expr(o->v.Assert.test); in ast2obj_stmt()
2464 value = ast2obj_expr(o->v.Assert.msg); in ast2obj_stmt()
2501 value = ast2obj_expr(o->v.Exec.body); in ast2obj_stmt()
2506 value = ast2obj_expr(o->v.Exec.globals); in ast2obj_stmt()
2511 value = ast2obj_expr(o->v.Exec.locals); in ast2obj_stmt()
2529 value = ast2obj_expr(o->v.Expr.value); in ast2obj_stmt()
2566 ast2obj_expr(void* _o) in ast2obj_expr() function
2584 value = ast2obj_list(o->v.BoolOp.values, ast2obj_expr); in ast2obj_expr()
2593 value = ast2obj_expr(o->v.BinOp.left); in ast2obj_expr()
2603 value = ast2obj_expr(o->v.BinOp.right); in ast2obj_expr()
2617 value = ast2obj_expr(o->v.UnaryOp.operand); in ast2obj_expr()
2631 value = ast2obj_expr(o->v.Lambda.body); in ast2obj_expr()
2640 value = ast2obj_expr(o->v.IfExp.test); in ast2obj_expr()
2645 value = ast2obj_expr(o->v.IfExp.body); in ast2obj_expr()
2650 value = ast2obj_expr(o->v.IfExp.orelse); 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()
2682 value = ast2obj_expr(o->v.ListComp.elt); in ast2obj_expr()
2697 value = ast2obj_expr(o->v.SetComp.elt); in ast2obj_expr()
2712 value = ast2obj_expr(o->v.DictComp.key); in ast2obj_expr()
2717 value = ast2obj_expr(o->v.DictComp.value); in ast2obj_expr()
2732 value = ast2obj_expr(o->v.GeneratorExp.elt); in ast2obj_expr()
2747 value = ast2obj_expr(o->v.Yield.value); in ast2obj_expr()
2756 value = ast2obj_expr(o->v.Compare.left); in ast2obj_expr()
2772 value = ast2obj_list(o->v.Compare.comparators, ast2obj_expr); in ast2obj_expr()
2781 value = ast2obj_expr(o->v.Call.func); in ast2obj_expr()
2786 value = ast2obj_list(o->v.Call.args, ast2obj_expr); in ast2obj_expr()
2796 value = ast2obj_expr(o->v.Call.starargs); in ast2obj_expr()
2801 value = ast2obj_expr(o->v.Call.kwargs); in ast2obj_expr()
2810 value = ast2obj_expr(o->v.Repr.value); in ast2obj_expr()
2837 value = ast2obj_expr(o->v.Attribute.value); in ast2obj_expr()
2856 value = ast2obj_expr(o->v.Subscript.value); 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()
2977 value = ast2obj_expr(o->v.Slice.lower); in ast2obj_slice()
2982 value = ast2obj_expr(o->v.Slice.upper); in ast2obj_slice()
2987 value = ast2obj_expr(o->v.Slice.step); in ast2obj_slice()
3005 value = ast2obj_expr(o->v.Index.value); in ast2obj_slice()
3151 value = ast2obj_expr(o->target); in ast2obj_comprehension()
3156 value = ast2obj_expr(o->iter); in ast2obj_comprehension()
3161 value = ast2obj_list(o->ifs, ast2obj_expr); in ast2obj_comprehension()
3187 value = ast2obj_expr(o->v.ExceptHandler.type); in ast2obj_excepthandler()
3192 value = ast2obj_expr(o->v.ExceptHandler.name); 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()
3277 value = ast2obj_expr(o->value); in ast2obj_keyword()