Lines Matching refs:ast_for_expr
27 static expr_ty ast_for_expr(struct compiling *, const node *);
597 expression = ast_for_expr(c, CHILD(n, i)); in seq_for_testlist()
712 expr_ty expression = ast_for_expr(c, CHILD(n, i + 2)); in ast_for_arguments()
960 expression = ast_for_expr(c, CHILD(n, 2)); in ast_for_lambdef()
968 expression = ast_for_expr(c, CHILD(n, 3)); in ast_for_lambdef()
983 body = ast_for_expr(c, CHILD(n, 0)); in ast_for_ifexpr()
986 expression = ast_for_expr(c, CHILD(n, 2)); in ast_for_ifexpr()
989 orelse = ast_for_expr(c, CHILD(n, 4)); in ast_for_ifexpr()
1078 elt = ast_for_expr(c, CHILD(n, 0)); in ast_for_listcomp()
1139 list_for_expr = ast_for_expr(c, CHILD(ch, 1)); in ast_for_listcomp()
1245 expression = ast_for_expr(c, CHILD(n, 3)); in ast_for_comprehension()
1279 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_comprehension()
1304 elt = ast_for_expr(c, CHILD(n, 0)); in ast_for_itercomp()
1330 key = ast_for_expr(c, CHILD(n, 0)); in ast_for_dictcomp()
1334 value = ast_for_expr(c, CHILD(n, 2)); in ast_for_dictcomp()
1419 return ast_for_expr(c, ch); in ast_for_atom()
1459 expression = ast_for_expr(c, CHILD(ch, i)); in ast_for_atom()
1484 expression = ast_for_expr(c, CHILD(ch, i)); in ast_for_atom()
1490 expression = ast_for_expr(c, CHILD(ch, i + 2)); in ast_for_atom()
1535 step = ast_for_expr(c, ch); in ast_for_slice()
1543 lower = ast_for_expr(c, ch); in ast_for_slice()
1554 upper = ast_for_expr(c, n2); in ast_for_slice()
1563 upper = ast_for_expr(c, n2); in ast_for_slice()
1588 step = ast_for_expr(c, ch); in ast_for_slice()
1610 expr1 = ast_for_expr(c, CHILD(n, 0)); in ast_for_binop()
1614 expr2 = ast_for_expr(c, CHILD(n, 2)); in ast_for_binop()
1636 tmp = ast_for_expr(c, CHILD(n, i * 2 + 2)); in ast_for_binop()
1762 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_factor()
1807 expr_ty f = ast_for_expr(c, CHILD(n, NCH(n) - 1)); in ast_for_power()
1822 ast_for_expr(struct compiling *c, const node *n) in ast_for_expr() function
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()
1919 expression = ast_for_expr(c, CHILD(n, i + 1)); in ast_for_expr()
1927 expression = ast_for_expr(c, CHILD(n, 0)); in ast_for_expr()
2041 e = ast_for_expr(c, CHILD(ch, 0)); in ast_for_call()
2059 e = ast_for_expr(c, CHILD(ch, 0)); in ast_for_call()
2086 e = ast_for_expr(c, CHILD(ch, 2)); in ast_for_call()
2096 vararg = ast_for_expr(c, CHILD(n, i+1)); in ast_for_call()
2102 kwarg = ast_for_expr(c, CHILD(n, i+1)); in ast_for_call()
2131 return ast_for_expr(c, CHILD(n, 0)); in ast_for_testlist()
2163 base = ast_for_expr(c, CHILD(n, 0)); in ast_for_class_bases()
2220 expr2 = ast_for_expr(c, ch); in ast_for_expr_stmt()
2263 expression = ast_for_expr(c, value); in ast_for_expr_stmt()
2284 dest = ast_for_expr(c, CHILD(n, 2)); in ast_for_print_stmt()
2295 expression = ast_for_expr(c, CHILD(n, i)); in ast_for_print_stmt()
2318 e = ast_for_expr(c, CHILD(n, i)); in ast_for_exprlist()
2365 expr_ty exp = ast_for_expr(c, CHILD(ch, 0)); in ast_for_flow_stmt()
2385 expr_ty expression = ast_for_expr(c, CHILD(ch, 1)); in ast_for_flow_stmt()
2394 expr1 = ast_for_expr(c, CHILD(ch, 1)); in ast_for_flow_stmt()
2397 expr2 = ast_for_expr(c, CHILD(ch, 3)); in ast_for_flow_stmt()
2407 expr1 = ast_for_expr(c, CHILD(ch, 1)); in ast_for_flow_stmt()
2410 expr2 = ast_for_expr(c, CHILD(ch, 3)); in ast_for_flow_stmt()
2413 expr3 = ast_for_expr(c, CHILD(ch, 5)); in ast_for_flow_stmt()
2681 expr1 = ast_for_expr(c, CHILD(n, 1)); in ast_for_exec_stmt()
2697 globals = ast_for_expr(c, CHILD(n, 3)); in ast_for_exec_stmt()
2702 locals = ast_for_expr(c, CHILD(n, 5)); in ast_for_exec_stmt()
2717 expr_ty expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_assert_stmt()
2726 expr1 = ast_for_expr(c, CHILD(n, 1)); in ast_for_assert_stmt()
2729 expr2 = ast_for_expr(c, CHILD(n, 3)); in ast_for_assert_stmt()
2821 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_if_stmt()
2841 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_if_stmt()
2875 expression = ast_for_expr(c, CHILD(n, NCH(n) - 6)); in ast_for_if_stmt()
2899 expression = ast_for_expr(c, CHILD(n, off)); in ast_for_if_stmt()
2912 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_if_stmt()
2937 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_while_stmt()
2950 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_while_stmt()
3028 expression = ast_for_expr(c, CHILD(exc, 1)); in ast_for_except_clause()
3041 expr_ty e = ast_for_expr(c, CHILD(exc, 3)); in ast_for_except_clause()
3046 expression = ast_for_expr(c, CHILD(exc, 1)); in ast_for_except_clause()
3148 context_expr = ast_for_expr(c, CHILD(n, 0)); in ast_for_with_item()
3152 optional_vars = ast_for_expr(c, CHILD(n, 2)); in ast_for_with_item()