Lines Matching refs:ast2obj_expr
193 static PyObject* ast2obj_expr(void*);
2599 value = ast2obj_expr(o->v.Expression.body); in ast2obj_mod()
2650 value = ast2obj_list(o->v.FunctionDef.decorator_list, ast2obj_expr); in ast2obj_stmt()
2655 value = ast2obj_expr(o->v.FunctionDef.returns); in ast2obj_stmt()
2680 ast2obj_expr); in ast2obj_stmt()
2685 value = ast2obj_expr(o->v.AsyncFunctionDef.returns); in ast2obj_stmt()
2699 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()
2714 value = ast2obj_list(o->v.ClassDef.decorator_list, ast2obj_expr); in ast2obj_stmt()
2723 value = ast2obj_expr(o->v.Return.value); 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()
2746 value = ast2obj_expr(o->v.Assign.value); in ast2obj_stmt()
2755 value = ast2obj_expr(o->v.AugAssign.target); in ast2obj_stmt()
2765 value = ast2obj_expr(o->v.AugAssign.value); in ast2obj_stmt()
2774 value = ast2obj_expr(o->v.AnnAssign.target); in ast2obj_stmt()
2779 value = ast2obj_expr(o->v.AnnAssign.annotation); in ast2obj_stmt()
2784 value = ast2obj_expr(o->v.AnnAssign.value); in ast2obj_stmt()
2798 value = ast2obj_expr(o->v.For.target); in ast2obj_stmt()
2803 value = ast2obj_expr(o->v.For.iter); in ast2obj_stmt()
2822 value = ast2obj_expr(o->v.AsyncFor.target); in ast2obj_stmt()
2827 value = ast2obj_expr(o->v.AsyncFor.iter); in ast2obj_stmt()
2846 value = ast2obj_expr(o->v.While.test); in ast2obj_stmt()
2865 value = ast2obj_expr(o->v.If.test); in ast2obj_stmt()
2912 value = ast2obj_expr(o->v.Raise.exc); in ast2obj_stmt()
2917 value = ast2obj_expr(o->v.Raise.cause); in ast2obj_stmt()
2950 value = ast2obj_expr(o->v.Assert.test); in ast2obj_stmt()
2955 value = ast2obj_expr(o->v.Assert.msg); in ast2obj_stmt()
3010 value = ast2obj_expr(o->v.Expr.value); in ast2obj_stmt()
3047 ast2obj_expr(void* _o) in ast2obj_expr() function
3064 value = ast2obj_list(o->v.BoolOp.values, ast2obj_expr); in ast2obj_expr()
3073 value = ast2obj_expr(o->v.BinOp.left); in ast2obj_expr()
3083 value = ast2obj_expr(o->v.BinOp.right); in ast2obj_expr()
3097 value = ast2obj_expr(o->v.UnaryOp.operand); in ast2obj_expr()
3111 value = ast2obj_expr(o->v.Lambda.body); in ast2obj_expr()
3120 value = ast2obj_expr(o->v.IfExp.test); in ast2obj_expr()
3125 value = ast2obj_expr(o->v.IfExp.body); in ast2obj_expr()
3130 value = ast2obj_expr(o->v.IfExp.orelse); 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()
3162 value = ast2obj_expr(o->v.ListComp.elt); in ast2obj_expr()
3176 value = ast2obj_expr(o->v.SetComp.elt); in ast2obj_expr()
3190 value = ast2obj_expr(o->v.DictComp.key); in ast2obj_expr()
3195 value = ast2obj_expr(o->v.DictComp.value); in ast2obj_expr()
3209 value = ast2obj_expr(o->v.GeneratorExp.elt); in ast2obj_expr()
3224 value = ast2obj_expr(o->v.Await.value); in ast2obj_expr()
3233 value = ast2obj_expr(o->v.Yield.value); in ast2obj_expr()
3242 value = ast2obj_expr(o->v.YieldFrom.value); in ast2obj_expr()
3251 value = ast2obj_expr(o->v.Compare.left); in ast2obj_expr()
3267 value = ast2obj_list(o->v.Compare.comparators, ast2obj_expr); in ast2obj_expr()
3276 value = ast2obj_expr(o->v.Call.func); in ast2obj_expr()
3281 value = ast2obj_list(o->v.Call.args, ast2obj_expr); in ast2obj_expr()
3313 value = ast2obj_expr(o->v.FormattedValue.value); in ast2obj_expr()
3323 value = ast2obj_expr(o->v.FormattedValue.format_spec); in ast2obj_expr()
3332 value = ast2obj_list(o->v.JoinedStr.values, ast2obj_expr); in ast2obj_expr()
3372 value = ast2obj_expr(o->v.Attribute.value); in ast2obj_expr()
3391 value = ast2obj_expr(o->v.Subscript.value); in ast2obj_expr()
3410 value = ast2obj_expr(o->v.Starred.value); 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()
3521 value = ast2obj_expr(o->v.Slice.lower); in ast2obj_slice()
3526 value = ast2obj_expr(o->v.Slice.upper); in ast2obj_slice()
3531 value = ast2obj_expr(o->v.Slice.step); in ast2obj_slice()
3549 value = ast2obj_expr(o->v.Index.value); in ast2obj_slice()
3697 value = ast2obj_expr(o->target); in ast2obj_comprehension()
3702 value = ast2obj_expr(o->iter); in ast2obj_comprehension()
3707 value = ast2obj_list(o->ifs, ast2obj_expr); in ast2obj_comprehension()
3737 value = ast2obj_expr(o->v.ExceptHandler.type); in ast2obj_excepthandler()
3797 value = ast2obj_list(o->kw_defaults, ast2obj_expr); in ast2obj_arguments()
3807 value = ast2obj_list(o->defaults, ast2obj_expr); in ast2obj_arguments()
3835 value = ast2obj_expr(o->annotation); in ast2obj_arg()
3873 value = ast2obj_expr(o->value); in ast2obj_keyword()
3924 value = ast2obj_expr(o->context_expr); in ast2obj_withitem()
3929 value = ast2obj_expr(o->optional_vars); in ast2obj_withitem()