Lines Matching refs:PEEK
175 #define PEEK() (*p->next) macro
179 #define SEE(c) (MORE() && PEEK() == (c))
180 #define SEETWO(a, b) (MORE2() && PEEK() == (a) && PEEK2() == (b))
192 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
194 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
555 c = PEEK(); in p_ere_exp()
589 if (isdigit((uch)PEEK())) { in p_ere_exp()
598 while (MORE() && PEEK() != '}') in p_ere_exp()
608 c = PEEK(); in p_ere_exp()
963 if (MORE() && isdigit((uch)PEEK())) { in p_simp_re()
993 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) { in p_count()
1037 while (MORE() && PEEK() != ']' && !SEETWO('-', ']')) in p_bracket()
1088 switch ((MORE()) ? PEEK() : '\0') {
1104 c = PEEK();
1113 c = PEEK();
1199 while (MORE() && isalpha((uch)PEEK()))