Lines Matching refs:nch
2453 int i, nch, start = 0; in ast_for_atom_expr() local
2457 nch = NCH(n); in ast_for_atom_expr()
2461 assert(nch > 1); in ast_for_atom_expr()
2467 if (nch == 1) in ast_for_atom_expr()
2469 if (start && nch == 2) { in ast_for_atom_expr()
2473 for (i = start + 1; i < nch; i++) { in ast_for_atom_expr()
3787 const int nch = NCH(n); in ast_for_try_stmt() local
3788 int n_except = (nch - 3)/3; in ast_for_try_stmt()
3797 if (TYPE(CHILD(n, nch - 3)) == NAME) { in ast_for_try_stmt()
3798 if (strcmp(STR(CHILD(n, nch - 3)), "finally") == 0) { in ast_for_try_stmt()
3799 if (nch >= 9 && TYPE(CHILD(n, nch - 6)) == NAME) { in ast_for_try_stmt()
3803 orelse = ast_for_suite(c, CHILD(n, nch - 4)); in ast_for_try_stmt()
3809 finally = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
3817 orelse = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
3823 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()