• Home
  • Raw
  • Download

Lines Matching refs:asdl_seq

26 static asdl_seq *seq_for_testlist(struct compiling *, const node *);
29 static asdl_seq *ast_for_suite(struct compiling *, const node *);
30 static asdl_seq *ast_for_exprlist(struct compiling *, const node *,
33 static stmt_ty ast_for_classdef(struct compiling *, const node *, asdl_seq *);
220 asdl_seq *stmts = NULL; in PyAST_FromNode()
372 asdl_seq *s = NULL; in set_context()
577 static asdl_seq *
581 asdl_seq *seq; in seq_for_testlist()
612 asdl_seq *args = asdl_seq_new(len, c->c_arena); in compiler_complex_args()
670 asdl_seq *args, *defaults; in ast_for_arguments()
871 static asdl_seq*
874 asdl_seq* decorator_seq; in ast_for_decorators()
893 ast_for_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_funcdef()
898 asdl_seq *body; in ast_for_funcdef()
924 asdl_seq *decorator_seq = NULL; in ast_for_decorated()
1071 asdl_seq *listcomps; in ast_for_listcomp()
1093 asdl_seq *t; in ast_for_listcomp()
1122 asdl_seq *ifs; in ast_for_listcomp()
1219 static asdl_seq *
1223 asdl_seq *comps; in ast_for_comprehension()
1235 asdl_seq *t; in ast_for_comprehension()
1263 asdl_seq *ifs; in ast_for_comprehension()
1300 asdl_seq *comps; in ast_for_itercomp()
1325 asdl_seq *comps; in ast_for_dictcomp()
1430 asdl_seq *elts = seq_for_testlist(c, ch); in ast_for_atom()
1444 asdl_seq *keys, *values; in ast_for_atom()
1452 asdl_seq *elts; in ast_for_atom()
1692 asdl_seq *slices, *elts; in ast_for_trailer()
1849 asdl_seq *seq; in ast_for_expr()
1903 asdl_seq *cmps; in ast_for_expr()
1987 asdl_seq *args; in ast_for_call()
1988 asdl_seq *keywords; in ast_for_call()
2133 asdl_seq *tmp = seq_for_testlist(c, n); in ast_for_testlist()
2152 static asdl_seq*
2160 asdl_seq *bases = asdl_seq_new(1, c->c_arena); in ast_for_class_bases()
2233 asdl_seq *targets; in ast_for_expr_stmt()
2278 asdl_seq *seq = NULL; in ast_for_print_stmt()
2305 static asdl_seq *
2308 asdl_seq *seq; in ast_for_exprlist()
2331 asdl_seq *expr_list; in ast_for_del_stmt()
2547 asdl_seq *aliases; in ast_for_import_stmt()
2649 asdl_seq *s; in ast_for_global_stmt()
2739 static asdl_seq *
2743 asdl_seq *seq; in ast_for_suite()
2817 asdl_seq *suite_seq; in ast_for_if_stmt()
2837 asdl_seq *seq1, *seq2; in ast_for_if_stmt()
2855 asdl_seq *suite_seq; in ast_for_if_stmt()
2856 asdl_seq *orelse = NULL; in ast_for_if_stmt()
2868 asdl_seq *suite_seq2; in ast_for_if_stmt()
2894 asdl_seq *newobj = asdl_seq_new(1, c->c_arena); in ast_for_if_stmt()
2933 asdl_seq *suite_seq; in ast_for_while_stmt()
2946 asdl_seq *seq1, *seq2; in ast_for_while_stmt()
2971 asdl_seq *_target, *seq = NULL, *suite_seq; in ast_for_for_stmt()
3015 asdl_seq *suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
3024 asdl_seq *suite_seq; in ast_for_except_clause()
3037 asdl_seq *suite_seq; in ast_for_except_clause()
3066 asdl_seq *body, *orelse = NULL, *finally = NULL; in ast_for_try_stmt()
3109 asdl_seq *handlers = asdl_seq_new(n_except, c->c_arena); in ast_for_try_stmt()
3141 ast_for_with_item(struct compiling *c, const node *n, asdl_seq *content) in ast_for_with_item()
3170 asdl_seq *inner; in ast_for_with_stmt()
3200 ast_for_classdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_classdef()
3204 asdl_seq *bases, *s; in ast_for_classdef()