Lines Matching refs:PEEK
250 #define PEEK() (*p->next) macro
254 #define SEE(c) (MORE() && PEEK() == (c))
255 #define SEETWO(a, b) (MORE2() && PEEK() == (a) && PEEK2() == (b))
264 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
266 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
404 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
540 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
549 c = PEEK(); in p_ere_exp()
581 if (isdigit((uch)PEEK())) { in p_ere_exp()
590 while (MORE() && PEEK() != '}') in p_ere_exp()
600 c = PEEK(); in p_ere_exp()
752 if (MORE() && isdigit((uch)PEEK())) { in p_simp_re()
781 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) { in p_count()
827 while (MORE() && PEEK() != ']' && !SEETWO('-', ']')) in p_bracket()
885 switch ((MORE()) ? PEEK() : '\0') { in p_b_term()
902 c = PEEK(); in p_b_term()
911 c = PEEK(); in p_b_term()
949 while (MORE() && isalpha((uch)PEEK())) in p_b_cclass()