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.c567 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()
[all …]