• Home
  • Raw
  • Download

Lines Matching refs:asdl_seq

18 static int validate_stmts(asdl_seq *);
19 static int validate_exprs(asdl_seq *, expr_context_ty, int);
20 static int validate_nonempty_seq(asdl_seq *, const char *, const char *);
44 validate_comprehension(asdl_seq *gens) in validate_comprehension()
62 validate_keywords(asdl_seq *keywords) in validate_keywords()
72 validate_args(asdl_seq *args) in validate_args()
328 validate_nonempty_seq(asdl_seq *seq, const char *what, const char *owner) in validate_nonempty_seq()
337 validate_assignlist(asdl_seq *targets, expr_context_ty ctx) in validate_assignlist()
344 validate_body(asdl_seq *body, const char *owner) in validate_body()
492 validate_stmts(asdl_seq *seq) in validate_stmts()
511 validate_exprs(asdl_seq *exprs, expr_context_ty ctx, int null_ok) in validate_exprs()
566 static asdl_seq *seq_for_testlist(struct compiling *, const node *);
569 static asdl_seq *ast_for_suite(struct compiling *c, const node *n);
570 static asdl_seq *ast_for_exprlist(struct compiling *, const node *,
573 static stmt_ty ast_for_classdef(struct compiling *, const node *, asdl_seq *);
584 static void get_last_end_pos(asdl_seq *, int *, int *);
767 asdl_seq *stmts = NULL; in PyAST_FromNodeObject()
768 asdl_seq *type_ignores = NULL; in PyAST_FromNodeObject()
773 asdl_seq *argtypes = NULL; in PyAST_FromNodeObject()
1118 asdl_seq *s = NULL; in set_context()
1275 static asdl_seq *
1281 asdl_seq *seq; in seq_for_testlist()
1341 asdl_seq *kwonlyargs, asdl_seq *kwdefaults) in handle_keywordonly_args()
1482 asdl_seq *posonlyargs, *posargs, *posdefaults, *kwonlyargs, *kwdefaults; in ast_for_arguments()
1691 static asdl_seq*
1694 asdl_seq* decorator_seq; in ast_for_decorators()
1714 asdl_seq *decorator_seq, bool is_async) in ast_for_funcdef_impl()
1720 asdl_seq *body; in ast_for_funcdef_impl()
1784 ast_for_async_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_async_funcdef()
1796 ast_for_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_funcdef()
1836 asdl_seq *decorator_seq = NULL; in ast_for_decorated()
2017 static asdl_seq *
2021 asdl_seq *comps; in ast_for_comprehension()
2033 asdl_seq *t; in ast_for_comprehension()
2082 asdl_seq *ifs; in ast_for_comprehension()
2121 asdl_seq *comps; in ast_for_itercomp()
2197 asdl_seq *comps; in ast_for_dictcomp()
2219 asdl_seq *keys, *values; in ast_for_dictdisplay()
2273 asdl_seq *elts; in ast_for_setdisplay()
2404 asdl_seq *elts = seq_for_testlist(c, ch); in ast_for_atom()
2617 asdl_seq *elts; in ast_for_trailer()
2780 asdl_seq *seq; in ast_for_expr()
2841 asdl_seq *cmps; in ast_for_expr()
2942 asdl_seq *args; in ast_for_call()
2943 asdl_seq *keywords; in ast_for_call()
3152 asdl_seq *tmp = seq_for_testlist(c, n); in ast_for_testlist()
3310 asdl_seq *targets; in ast_for_expr_stmt()
3361 static asdl_seq *
3364 asdl_seq *seq; in ast_for_exprlist()
3387 asdl_seq *expr_list; in ast_for_del_stmt()
3594 asdl_seq *aliases; in ast_for_import_stmt()
3705 asdl_seq *s; in ast_for_global_stmt()
3727 asdl_seq *s; in ast_for_nonlocal_stmt()
3775 static asdl_seq *
3779 asdl_seq *seq; in ast_for_suite()
3850 get_last_end_pos(asdl_seq *s, int *end_lineno, int *end_col_offset) in get_last_end_pos()
3873 asdl_seq *suite_seq; in ast_for_if_stmt()
3894 asdl_seq *seq1, *seq2; in ast_for_if_stmt()
3913 asdl_seq *suite_seq; in ast_for_if_stmt()
3914 asdl_seq *orelse = NULL; in ast_for_if_stmt()
3926 asdl_seq *suite_seq2; in ast_for_if_stmt()
3953 asdl_seq *newobj = _Py_asdl_seq_new(1, c->c_arena); in ast_for_if_stmt()
4001 asdl_seq *suite_seq; in ast_for_while_stmt()
4015 asdl_seq *seq1, *seq2; in ast_for_while_stmt()
4042 asdl_seq *_target, *seq = NULL, *suite_seq; in ast_for_for_stmt()
4121 asdl_seq *suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4132 asdl_seq *suite_seq; in ast_for_except_clause()
4147 asdl_seq *suite_seq; in ast_for_except_clause()
4178 asdl_seq *body, *handlers = NULL, *orelse = NULL, *finally = NULL; in ast_for_try_stmt()
4281 asdl_seq *items, *body; in ast_for_with_stmt()
4328 ast_for_classdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_classdef()
4332 asdl_seq *s; in ast_for_classdef()
5353 static asdl_seq *
5356 asdl_seq *seq; in ExprList_Finish()
5578 asdl_seq *seq; in FstringParser_Finish()
5844 _PyAST_GetDocString(asdl_seq *body) in _PyAST_GetDocString()