Lines Matching refs:ast_for_suite
569 static asdl_seq *ast_for_suite(struct compiling *c, const node *n);
1755 body = ast_for_suite(c, CHILD(n, name_i + 3)); in ast_for_funcdef_impl()
3776 ast_for_suite(struct compiling *c, const node *n) in ast_for_suite() function
3878 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
3899 seq1 = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
3902 seq2 = ast_for_suite(c, CHILD(n, 6)); in ast_for_if_stmt()
3934 suite_seq = ast_for_suite(c, CHILD(n, NCH(n) - 4)); in ast_for_if_stmt()
3937 suite_seq2 = ast_for_suite(c, CHILD(n, NCH(n) - 1)); in ast_for_if_stmt()
3959 suite_seq = ast_for_suite(c, CHILD(n, off + 2)); in ast_for_if_stmt()
3978 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
4006 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_while_stmt()
4020 seq1 = ast_for_suite(c, CHILD(n, 3)); in ast_for_while_stmt()
4023 seq2 = ast_for_suite(c, CHILD(n, 6)); in ast_for_while_stmt()
4062 seq = ast_for_suite(c, CHILD(n, 8 + has_type_comment)); in ast_for_for_stmt()
4084 suite_seq = ast_for_suite(c, CHILD(n, 5 + has_type_comment)); in ast_for_for_stmt()
4121 asdl_seq *suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4137 suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4157 suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4183 body = ast_for_suite(c, CHILD(n, 2)); in ast_for_try_stmt()
4193 orelse = ast_for_suite(c, CHILD(n, nch - 4)); in ast_for_try_stmt()
4199 finally = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
4207 orelse = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
4306 body = ast_for_suite(c, CHILD(n, NCH(n) - 1)); in ast_for_with_stmt()
4339 s = ast_for_suite(c, CHILD(n, 3)); in ast_for_classdef()
4355 s = ast_for_suite(c, CHILD(n, 5)); in ast_for_classdef()
4386 s = ast_for_suite(c, CHILD(n, 6)); in ast_for_classdef()