Lines Matching refs:ast_for_suite

597 static asdl_seq *ast_for_suite(struct compiling *c, const node *n);
1857 body = ast_for_suite(c, CHILD(n, name_i + 3)); in ast_for_funcdef_impl()
3909 ast_for_suite(struct compiling *c, const node *n) in ast_for_suite() function
4011 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
4032 seq1 = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
4035 seq2 = ast_for_suite(c, CHILD(n, 6)); in ast_for_if_stmt()
4067 suite_seq = ast_for_suite(c, CHILD(n, NCH(n) - 4)); in ast_for_if_stmt()
4070 suite_seq2 = ast_for_suite(c, CHILD(n, NCH(n) - 1)); in ast_for_if_stmt()
4092 suite_seq = ast_for_suite(c, CHILD(n, off + 2)); in ast_for_if_stmt()
4111 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
4139 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_while_stmt()
4153 seq1 = ast_for_suite(c, CHILD(n, 3)); in ast_for_while_stmt()
4156 seq2 = ast_for_suite(c, CHILD(n, 6)); in ast_for_while_stmt()
4195 seq = ast_for_suite(c, CHILD(n, 8 + has_type_comment)); in ast_for_for_stmt()
4217 suite_seq = ast_for_suite(c, CHILD(n, 5 + has_type_comment)); in ast_for_for_stmt()
4254 asdl_seq *suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4270 suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4290 suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
4316 body = ast_for_suite(c, CHILD(n, 2)); in ast_for_try_stmt()
4326 orelse = ast_for_suite(c, CHILD(n, nch - 4)); in ast_for_try_stmt()
4332 finally = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
4340 orelse = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
4439 body = ast_for_suite(c, CHILD(n, NCH(n) - 1)); in ast_for_with_stmt()
4472 s = ast_for_suite(c, CHILD(n, 3)); in ast_for_classdef()
4488 s = ast_for_suite(c, CHILD(n, 5)); in ast_for_classdef()
4519 s = ast_for_suite(c, CHILD(n, 6)); in ast_for_classdef()