Lines Matching refs:ast_for_expr
567 static expr_ty ast_for_expr(struct compiling *, const node *);
908 arg = ast_for_expr(&c, CHILD(ch, i)); in PyAST_FromNodeObject()
921 ret = ast_for_expr(&c, CHILD(n, NCH(n) - 1)); in PyAST_FromNodeObject()
1294 expression = ast_for_expr(c, ch); in seq_for_testlist()
1321 annotation = ast_for_expr(c, CHILD(n, 2)); in ast_for_arg()
1361 expression = ast_for_expr(c, CHILD(n, i + 2)); in handle_keywordonly_args()
1372 annotation = ast_for_expr(c, CHILD(ch, 2)); in handle_keywordonly_args()
1564 expr_ty expression = ast_for_expr(c, CHILD(n, i + 2)); in ast_for_arguments()
1688 return ast_for_expr(c, CHILD(n, 1)); in ast_for_decorator()
1744 returns = ast_for_expr(c, CHILD(n, name_i + 3)); in ast_for_funcdef_impl()
1870 target = ast_for_expr(c, CHILD(n, 0)); in ast_for_namedexpr()
1874 value = ast_for_expr(c, CHILD(n, 2)); in ast_for_namedexpr()
1905 expression = ast_for_expr(c, CHILD(n, 2)); in ast_for_lambdef()
1913 expression = ast_for_expr(c, CHILD(n, 3)); in ast_for_lambdef()
1929 body = ast_for_expr(c, CHILD(n, 0)); in ast_for_ifexpr()
1932 expression = ast_for_expr(c, CHILD(n, 2)); in ast_for_ifexpr()
1935 orelse = ast_for_expr(c, CHILD(n, 4)); in ast_for_ifexpr()
2062 expression = ast_for_expr(c, CHILD(sync_n, 3)); in ast_for_comprehension()
2098 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_comprehension()
2127 elt = ast_for_expr(c, ch); in ast_for_itercomp()
2165 expression = ast_for_expr(c, CHILD(n, *i + 1)); in ast_for_dictelement()
2176 expression = ast_for_expr(c, CHILD(n, *i)); in ast_for_dictelement()
2183 expression = ast_for_expr(c, CHILD(n, *i + 2)); in ast_for_dictelement()
2282 expression = ast_for_expr(c, CHILD(n, i)); in ast_for_setdisplay()
2382 return ast_for_expr(c, ch); in ast_for_atom()
2476 return ast_for_expr(c, ch); in ast_for_slice()
2480 lower = ast_for_expr(c, ch); in ast_for_slice()
2491 upper = ast_for_expr(c, n2); in ast_for_slice()
2500 upper = ast_for_expr(c, n2); in ast_for_slice()
2511 step = ast_for_expr(c, ch); in ast_for_slice()
2534 expr1 = ast_for_expr(c, CHILD(n, 0)); in ast_for_binop()
2538 expr2 = ast_for_expr(c, CHILD(n, 2)); in ast_for_binop()
2561 tmp = ast_for_expr(c, CHILD(n, i * 2 + 2)); in ast_for_binop()
2645 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_factor()
2729 expr_ty f = ast_for_expr(c, CHILD(n, NCH(n) - 1)); in ast_for_power()
2744 tmp = ast_for_expr(c, CHILD(n, 1)); in ast_for_starred()
2758 ast_for_expr(struct compiling *c, const node *n) in ast_for_expr() function
2807 expr_ty e = ast_for_expr(c, CHILD(n, i)); in ast_for_expr()
2825 expr_ty expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_expr()
2857 expression = ast_for_expr(c, CHILD(n, i + 1)); in ast_for_expr()
2865 expression = ast_for_expr(c, CHILD(n, 0)); in ast_for_expr()
2902 exp = ast_for_expr(c, en); in ast_for_expr()
3006 e = ast_for_expr(c, chch); in ast_for_call()
3020 e = ast_for_expr(c, CHILD(ch, 1)); in ast_for_call()
3036 e = ast_for_expr(c, CHILD(ch, 1)); in ast_for_call()
3118 e = ast_for_expr(c, CHILD(ch, 2)); in ast_for_call()
3150 return ast_for_expr(c, CHILD(n, 0)); in ast_for_testlist()
3213 expr2 = ast_for_expr(c, ch); in ast_for_expr_stmt()
3283 expr2 = ast_for_expr(c, ch); in ast_for_expr_stmt()
3298 expr3 = ast_for_expr(c, ch); in ast_for_expr_stmt()
3345 expression = ast_for_expr(c, value); in ast_for_expr_stmt()
3374 e = ast_for_expr(c, CHILD(n, i)); in ast_for_exprlist()
3424 expr_ty exp = ast_for_expr(c, CHILD(ch, 0)); in ast_for_flow_stmt()
3447 expr_ty expression = ast_for_expr(c, CHILD(ch, 1)); in ast_for_flow_stmt()
3451 cause = ast_for_expr(c, CHILD(ch, 3)); in ast_for_flow_stmt()
3750 expr_ty expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_assert_stmt()
3759 expr1 = ast_for_expr(c, CHILD(n, 1)); in ast_for_assert_stmt()
3762 expr2 = ast_for_expr(c, CHILD(n, 3)); in ast_for_assert_stmt()
3875 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_if_stmt()
3896 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_if_stmt()
3931 expression = ast_for_expr(c, CHILD(n, NCH(n) - 6)); in ast_for_if_stmt()
3956 expression = ast_for_expr(c, CHILD(n, off)); in ast_for_if_stmt()
3975 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_if_stmt()
4003 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_while_stmt()
4017 expression = ast_for_expr(c, CHILD(n, 1)); in ast_for_while_stmt()
4134 expression = ast_for_expr(c, CHILD(exc, 1)); in ast_for_except_clause()
4154 expression = ast_for_expr(c, CHILD(exc, 1)); in ast_for_except_clause()
4258 context_expr = ast_for_expr(c, CHILD(n, 0)); in ast_for_with_item()
4262 optional_vars = ast_for_expr(c, CHILD(n, 2)); in ast_for_with_item()