Lines Matching refs:ast_for_suite
29 static asdl_seq *ast_for_suite(struct compiling *, const node *);
911 body = ast_for_suite(c, CHILD(n, name_i + 3)); in ast_for_funcdef()
2742 ast_for_suite(struct compiling *c, const node *n) in ast_for_suite() function
2824 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
2844 seq1 = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
2847 seq2 = ast_for_suite(c, CHILD(n, 6)); in ast_for_if_stmt()
2878 suite_seq = ast_for_suite(c, CHILD(n, NCH(n) - 4)); in ast_for_if_stmt()
2881 suite_seq2 = ast_for_suite(c, CHILD(n, NCH(n) - 1)); in ast_for_if_stmt()
2902 suite_seq = ast_for_suite(c, CHILD(n, off + 2)); in ast_for_if_stmt()
2915 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_if_stmt()
2940 suite_seq = ast_for_suite(c, CHILD(n, 3)); in ast_for_while_stmt()
2953 seq1 = ast_for_suite(c, CHILD(n, 3)); in ast_for_while_stmt()
2956 seq2 = ast_for_suite(c, CHILD(n, 6)); in ast_for_while_stmt()
2981 seq = ast_for_suite(c, CHILD(n, 8)); in ast_for_for_stmt()
3001 suite_seq = ast_for_suite(c, CHILD(n, 5)); in ast_for_for_stmt()
3017 asdl_seq *suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
3031 suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
3049 suite_seq = ast_for_suite(c, body); in ast_for_except_clause()
3072 body = ast_for_suite(c, CHILD(n, 2)); in ast_for_try_stmt()
3082 orelse = ast_for_suite(c, CHILD(n, nch - 4)); in ast_for_try_stmt()
3088 finally = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
3096 orelse = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
3179 inner = ast_for_suite(c, CHILD(n, i)); in ast_for_with_stmt()
3214 s = ast_for_suite(c, CHILD(n, 3)); in ast_for_classdef()
3225 s = ast_for_suite(c, CHILD(n,5)); in ast_for_classdef()
3240 s = ast_for_suite(c, CHILD(n, 6)); in ast_for_classdef()