Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dast.c32 static expr_ty ast_for_testlist(struct compiling *, const node *);
275 testlist_ast = ast_for_testlist(&c, CHILD(n, 0)); in PyAST_FromNode()
1103 expression = ast_for_testlist(c, CHILD(ch, 3)); in ast_for_listcomp()
1504 expression = ast_for_testlist(c, CHILD(n, 1)); in ast_for_atom()
1955 exp = ast_for_testlist(c, CHILD(n, 1)); in ast_for_expr()
2114 ast_for_testlist(struct compiling *c, const node* n) in ast_for_testlist() function
2148 return ast_for_testlist(c, n); in ast_for_testlist_comp()
2186 expr_ty e = ast_for_testlist(c, CHILD(n, 0)); in ast_for_expr_stmt()
2197 expr1 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
2218 expr2 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
[all …]
/external/python/cpython3/Python/
Dast.c600 static expr_ty ast_for_testlist(struct compiling *, const node *);
821 testlist_ast = ast_for_testlist(&c, CHILD(n, 0)); in PyAST_FromNodeObject()
2164 return ast_for_testlist(c, ch); in ast_for_atom()
2674 exp = ast_for_testlist(c, en); in ast_for_expr()
2864 ast_for_testlist(struct compiling *c, const node* n) in ast_for_testlist() function
2901 expr_ty e = ast_for_testlist(c, CHILD(n, 0)); in ast_for_expr_stmt()
2912 expr1 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
2933 expr2 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
2959 expr1 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
3033 e = ast_for_testlist(c, ch); in ast_for_expr_stmt()
[all …]