Lines Matching refs:expr_ty
364 GENERATE_ASDL_SEQ_CONSTRUCTOR(expr, expr_ty)
1864 static int obj2ast_expr(struct ast_state *state, PyObject* obj, expr_ty* out,
1924 _PyAST_Expression(expr_ty body, PyArena *arena)
1941 _PyAST_FunctionType(asdl_expr_seq * argtypes, expr_ty returns, PyArena *arena)
1960 asdl_expr_seq * decorator_list, expr_ty returns, string
1994 body, asdl_expr_seq * decorator_list, expr_ty returns,
2055 _PyAST_Return(expr_ty value, int lineno, int col_offset, int end_lineno, int
2089 _PyAST_Assign(asdl_expr_seq * targets, expr_ty value, string type_comment, int
2114 _PyAST_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int
2148 _PyAST_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int simple,
2179 _PyAST_For(expr_ty target, expr_ty iter, asdl_stmt_seq * body, asdl_stmt_seq *
2211 _PyAST_AsyncFor(expr_ty target, expr_ty iter, asdl_stmt_seq * body,
2243 _PyAST_While(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int
2268 _PyAST_If(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int
2333 _PyAST_Match(expr_ty subject, asdl_match_case_seq * cases, int lineno, int
2356 _PyAST_Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, int
2417 _PyAST_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, int
2511 _PyAST_Expr(expr_ty value, int lineno, int col_offset, int end_lineno, int
2580 expr_ty
2584 expr_ty p;
2590 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2603 expr_ty
2604 _PyAST_NamedExpr(expr_ty target, expr_ty value, int lineno, int col_offset, int
2607 expr_ty p;
2618 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2631 expr_ty
2632 _PyAST_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
2635 expr_ty p;
2651 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2665 expr_ty
2666 _PyAST_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, int
2669 expr_ty p;
2680 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2693 expr_ty
2694 _PyAST_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, int
2697 expr_ty p;
2708 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2721 expr_ty
2722 _PyAST_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
2725 expr_ty p;
2741 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2755 expr_ty
2759 expr_ty p;
2760 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2773 expr_ty
2777 expr_ty p;
2778 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2790 expr_ty
2791 _PyAST_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno,
2795 expr_ty p;
2801 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2814 expr_ty
2815 _PyAST_SetComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno,
2819 expr_ty p;
2825 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2838 expr_ty
2839 _PyAST_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq *
2843 expr_ty p;
2854 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2868 expr_ty
2869 _PyAST_GeneratorExp(expr_ty elt, asdl_comprehension_seq * generators, int
2873 expr_ty p;
2879 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2892 expr_ty
2893 _PyAST_Await(expr_ty value, int lineno, int col_offset, int end_lineno, int
2896 expr_ty p;
2902 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2914 expr_ty
2915 _PyAST_Yield(expr_ty value, int lineno, int col_offset, int end_lineno, int
2918 expr_ty p;
2919 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2931 expr_ty
2932 _PyAST_YieldFrom(expr_ty value, int lineno, int col_offset, int end_lineno, int
2935 expr_ty p;
2941 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2953 expr_ty
2954 _PyAST_Compare(expr_ty left, asdl_int_seq * ops, asdl_expr_seq * comparators,
2958 expr_ty p;
2964 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
2978 expr_ty
2979 _PyAST_Call(expr_ty func, asdl_expr_seq * args, asdl_keyword_seq * keywords,
2983 expr_ty p;
2989 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3003 expr_ty
3004 _PyAST_FormattedValue(expr_ty value, int conversion, expr_ty format_spec, int
3008 expr_ty p;
3014 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3028 expr_ty
3032 expr_ty p;
3033 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3045 expr_ty
3049 expr_ty p;
3055 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3068 expr_ty
3069 _PyAST_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
3073 expr_ty p;
3089 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3103 expr_ty
3104 _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int lineno,
3108 expr_ty p;
3124 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3138 expr_ty
3139 _PyAST_Starred(expr_ty value, expr_context_ty ctx, int lineno, int col_offset,
3142 expr_ty p;
3153 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3166 expr_ty
3170 expr_ty p;
3181 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3194 expr_ty
3198 expr_ty p;
3204 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3217 expr_ty
3221 expr_ty p;
3227 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3240 expr_ty
3241 _PyAST_Slice(expr_ty lower, expr_ty upper, expr_ty step, int lineno, int
3244 expr_ty p;
3245 p = (expr_ty)_PyArena_Malloc(arena, sizeof(*p));
3260 _PyAST_comprehension(expr_ty target, expr_ty iter, asdl_expr_seq * ifs, int
3285 _PyAST_ExceptHandler(expr_ty type, identifier name, asdl_stmt_seq * body, int
3325 _PyAST_arg(identifier arg, expr_ty annotation, string type_comment, int lineno,
3348 _PyAST_keyword(identifier arg, expr_ty value, int lineno, int col_offset, int
3392 _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena *arena)
3409 _PyAST_match_case(pattern_ty pattern, expr_ty guard, asdl_stmt_seq * body,
3428 _PyAST_MatchValue(expr_ty value, int lineno, int col_offset, int end_lineno,
3509 _PyAST_MatchClass(expr_ty cls, asdl_pattern_seq * patterns, asdl_identifier_seq
4251 expr_ty o = (expr_ty)_o;
5627 expr_ty body;
5657 expr_ty returns;
5678 expr_ty val;
5819 expr_ty returns;
5912 expr_ty val;
5980 expr_ty returns;
6073 expr_ty val;
6180 expr_ty val;
6291 expr_ty val;
6321 expr_ty value;
6372 expr_ty val;
6402 expr_ty value;
6424 expr_ty val;
6487 expr_ty target;
6489 expr_ty value;
6553 expr_ty target;
6554 expr_ty annotation;
6555 expr_ty value;
6637 expr_ty target;
6638 expr_ty iter;
6779 expr_ty target;
6780 expr_ty iter;
6922 expr_ty test;
7028 expr_ty test;
7346 expr_ty subject;
7414 expr_ty exc;
7415 expr_ty cause;
7790 expr_ty test;
7791 expr_ty msg;
8074 expr_ty value;
8142 obj2ast_expr(struct ast_state *state, PyObject* obj, expr_ty* out, PyArena*
8271 expr_ty val;
8300 expr_ty target;
8301 expr_ty value;
8348 expr_ty left;
8350 expr_ty right;
8415 expr_ty operand;
8463 expr_ty body;
8510 expr_ty test;
8511 expr_ty body;
8512 expr_ty orelse;
8598 expr_ty val;
8635 expr_ty val;
8685 expr_ty val;
8714 expr_ty elt;
8782 expr_ty elt;
8850 expr_ty key;
8851 expr_ty value;
8936 expr_ty elt;
9004 expr_ty value;
9034 expr_ty value;
9064 expr_ty value;
9094 expr_ty left;
9171 expr_ty val;
9200 expr_ty func;
9240 expr_ty val;
9306 expr_ty value;
9308 expr_ty format_spec;
9394 expr_ty val;
9471 expr_ty value;
9537 expr_ty value;
9538 expr_ty slice;
9603 expr_ty value;
9721 expr_ty val;
9789 expr_ty val;
9835 expr_ty lower;
9836 expr_ty upper;
9837 expr_ty step;
10218 expr_ty target;
10219 expr_ty iter;
10276 expr_ty val;
10409 expr_ty type;
10656 expr_ty val;
10710 expr_ty val;
10741 expr_ty annotation;
10881 expr_ty value;
11124 expr_ty context_expr;
11125 expr_ty optional_vars;
11174 expr_ty guard;
11346 expr_ty value;
11479 expr_ty val;
11562 expr_ty cls;