Lines Matching refs:expr_ty
27 static expr_ty ast_for_expr(struct compiling *, const node *);
32 static expr_ty ast_for_testlist(struct compiling *, const node *);
34 static expr_ty ast_for_testlist_comp(struct compiling *, const node *);
37 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty);
272 expr_ty testlist_ast; in PyAST_FromNode()
370 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
480 if (!set_context(c, (expr_ty)asdl_seq_GET(s, i), ctx, n)) in set_context()
582 expr_ty expression; in seq_for_testlist()
607 static expr_ty
611 expr_ty result; in compiler_complex_args()
624 expr_ty arg; in compiler_complex_args()
712 expr_ty expression = ast_for_expr(c, CHILD(n, i + 2)); in ast_for_arguments()
755 expr_ty name; in ast_for_arguments()
803 static expr_ty
806 expr_ty e; in ast_for_dotted_name()
835 static expr_ty
839 expr_ty d = NULL; in ast_for_decorator()
840 expr_ty name_expr; in ast_for_decorator()
875 expr_ty d; in ast_for_decorators()
949 static expr_ty
954 expr_ty expression; in ast_for_lambdef()
976 static expr_ty
980 expr_ty expression, body, orelse; in ast_for_ifexpr()
1061 static expr_ty
1070 expr_ty elt, first; in ast_for_listcomp()
1094 expr_ty expression; in ast_for_listcomp()
1110 first = (expr_ty)asdl_seq_GET(t, 0); in ast_for_listcomp()
1123 expr_ty list_for_expr; in ast_for_listcomp()
1236 expr_ty expression, first; in ast_for_comprehension()
1251 first = (expr_ty)asdl_seq_GET(t, 0); in ast_for_comprehension()
1296 static expr_ty
1299 expr_ty elt; in ast_for_itercomp()
1321 static expr_ty
1324 expr_ty key, value; in ast_for_dictcomp()
1345 static expr_ty
1352 static expr_ty
1359 static expr_ty
1458 expr_ty expression; in ast_for_atom()
1482 expr_ty expression; in ast_for_atom()
1500 expr_ty expression; in ast_for_atom()
1520 expr_ty lower = NULL, upper = NULL, step = NULL; in ast_for_slice()
1598 static expr_ty
1607 expr_ty expr1, expr2, result; in ast_for_binop()
1629 expr_ty tmp_result, tmp; in ast_for_binop()
1650 static expr_ty
1651 ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr) in ast_for_trailer()
1690 expr_ty e; in ast_for_trailer()
1726 static expr_ty
1730 expr_ty expression; in ast_for_factor()
1782 static expr_ty
1788 expr_ty e, tmp; in ast_for_power()
1807 expr_ty f = ast_for_expr(c, CHILD(n, NCH(n) - 1)); in ast_for_power()
1821 static expr_ty
1872 expr_ty e = ast_for_expr(c, CHILD(n, i)); in ast_for_expr()
1888 expr_ty expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_expr()
1901 expr_ty expression; in ast_for_expr()
1953 expr_ty exp = NULL; in ast_for_expr()
1977 static expr_ty
1978 ast_for_call(struct compiling *c, const node *n, expr_ty func) in ast_for_call()
1989 expr_ty vararg = NULL, kwarg = NULL; in ast_for_call()
2029 expr_ty e; in ast_for_call()
2113 static expr_ty
2140 static expr_ty
2159 expr_ty base; in ast_for_class_bases()
2186 expr_ty e = ast_for_testlist(c, CHILD(n, 0)); in ast_for_expr_stmt()
2193 expr_ty expr1, expr2; in ast_for_expr_stmt()
2235 expr_ty expression; in ast_for_expr_stmt()
2243 expr_ty e; in ast_for_expr_stmt()
2277 expr_ty dest = NULL, expression; in ast_for_print_stmt()
2310 expr_ty e; in ast_for_exprlist()
2365 expr_ty exp = ast_for_expr(c, CHILD(ch, 0)); in ast_for_flow_stmt()
2374 expr_ty expression = ast_for_testlist(c, CHILD(ch, 1)); in ast_for_flow_stmt()
2385 expr_ty expression = ast_for_expr(c, CHILD(ch, 1)); in ast_for_flow_stmt()
2392 expr_ty expr1, expr2; in ast_for_flow_stmt()
2405 expr_ty expr1, expr2, expr3; in ast_for_flow_stmt()
2670 expr_ty expr1, globals = NULL, locals = NULL; in ast_for_exec_stmt()
2717 expr_ty expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_assert_stmt()
2724 expr_ty expr1, expr2; in ast_for_assert_stmt()
2818 expr_ty expression; in ast_for_if_stmt()
2838 expr_ty expression; in ast_for_if_stmt()
2856 expr_ty expression; in ast_for_if_stmt()
2934 expr_ty expression; in ast_for_while_stmt()
2947 expr_ty expression; in ast_for_while_stmt()
2974 expr_ty expression; in ast_for_for_stmt()
2975 expr_ty target, first; in ast_for_for_stmt()
2992 first = (expr_ty)asdl_seq_GET(_target, 0); in ast_for_for_stmt()
3025 expr_ty expression; in ast_for_except_clause()
3040 expr_ty expression; in ast_for_except_clause()
3041 expr_ty e = ast_for_expr(c, CHILD(exc, 3)); in ast_for_except_clause()
3145 expr_ty context_expr, optional_vars = NULL; in ast_for_with_item()