Home
last modified time | relevance | path

Searched refs:ast_for_expr (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dast.c27 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()
[all …]
/external/python/cpython3/Python/
Dast.c595 static expr_ty ast_for_expr(struct compiling *, const node *);
1205 expression = ast_for_expr(c, ch); in seq_for_testlist()
1232 annotation = ast_for_expr(c, CHILD(n, 2)); in ast_for_arg()
1271 expression = ast_for_expr(c, CHILD(n, i + 2)); in handle_keywordonly_args()
1282 annotation = ast_for_expr(c, CHILD(ch, 2)); in handle_keywordonly_args()
1413 expr_ty expression = ast_for_expr(c, CHILD(n, i + 2)); in ast_for_arguments()
1594 returns = ast_for_expr(c, CHILD(n, name_i + 3)); in ast_for_funcdef_impl()
1706 expression = ast_for_expr(c, CHILD(n, 2)); in ast_for_lambdef()
1714 expression = ast_for_expr(c, CHILD(n, 3)); in ast_for_lambdef()
1729 body = ast_for_expr(c, CHILD(n, 0)); in ast_for_ifexpr()
[all …]