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.c572 static expr_ty ast_for_testlist(struct compiling *, const node *);
840 testlist_ast = ast_for_testlist(&c, CHILD(n, 0)); in PyAST_FromNodeObject()
2386 return ast_for_testlist(c, ch); in ast_for_atom()
2393 return copy_location(ast_for_testlist(c, ch), n, n); in ast_for_atom()
2905 exp = ast_for_testlist(c, en); in ast_for_expr()
3136 ast_for_testlist(struct compiling *c, const node* n) in ast_for_testlist() function
3175 expr_ty e = ast_for_testlist(c, CHILD(n, 0)); in ast_for_expr_stmt()
3187 expr1 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
3211 expr2 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
3245 expr1 = ast_for_testlist(c, ch); in ast_for_expr_stmt()
[all …]