Home
last modified time | relevance | path

Searched refs:PEEK (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c182 #define PEEK() (*p->next) macro
186 #define SEE(c) (MORE() && PEEK() == (c))
187 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
196 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
198 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
361 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
474 REQUIRE(!MORE() || !isdigit((unsigned char)PEEK()), REG_BADRPT); in p_ere_exp()
483 c = PEEK(); in p_ere_exp()
515 if (isdigit((unsigned char)PEEK())) { in p_ere_exp()
524 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]