Lines Matching refs:nch
2671 int i, nch, start = 0; in ast_for_atom_expr() local
2675 nch = NCH(n); in ast_for_atom_expr()
2684 assert(nch > 1); in ast_for_atom_expr()
2690 if (nch == 1) in ast_for_atom_expr()
2692 if (start && nch == 2) { in ast_for_atom_expr()
2697 for (i = start + 1; i < nch; i++) { in ast_for_atom_expr()
4176 const int nch = NCH(n); in ast_for_try_stmt() local
4177 int end_lineno, end_col_offset, n_except = (nch - 3)/3; in ast_for_try_stmt()
4187 if (TYPE(CHILD(n, nch - 3)) == NAME) { in ast_for_try_stmt()
4188 if (strcmp(STR(CHILD(n, nch - 3)), "finally") == 0) { in ast_for_try_stmt()
4189 if (nch >= 9 && TYPE(CHILD(n, nch - 6)) == NAME) { 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()
4213 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()