Lines Matching refs:uch
543 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
561 (c == '{' && MORE2() && isdigit((uch)PEEK2())) in p_ere_exp()
570 (isdigit((uch)PEEK2()) || PEEK2() == ','), REG_BADRPT); in p_ere_exp()
599 if (isdigit((uch)PEEK())) { in p_ere_exp()
620 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ) ) in p_ere_exp()
840 c = (uch)GETNEXT(); in p_simp_re()
843 cc = (uch)GETNEXT(); in p_simp_re()
976 if (MORE() && isdigit((uch)PEEK())) { in p_simp_re()
1006 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) { in p_count()
1007 count = count*10 + ((uch)GETNEXT() - '0'); in p_count()
1212 while (MORE() && isalpha((uch)PEEK()))