Home
last modified time | relevance | path

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

/trueos/contrib/llvm/lib/Support/
HDregcomp.c114 #define PEEK() (*p->next) macro
118 #define SEE(c) (MORE() && PEEK() == (c))
119 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
128 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
130 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
268 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
404 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
413 c = PEEK(); in p_ere_exp()
445 if (isdigit((uch)PEEK())) { in p_ere_exp()
454 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]
/trueos/contrib/nvi/regex/
HDregcomp.c141 #define PEEK() (*p->next) macro
145 #define SEE(c) (MORE() && PEEK() == (c))
146 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
155 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
157 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
320 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
429 (void)REQUIRE(!MORE() || !ISDIGIT((UCHAR_T)PEEK()), REG_BADRPT); in p_ere_exp()
438 c = PEEK(); in p_ere_exp()
470 if (ISDIGIT((UCHAR_T)PEEK())) { in p_ere_exp()
479 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]
/trueos/lib/libc/regex/
HDregcomp.c137 #define PEEK() (*p->next) macro
141 #define SEE(c) (MORE() && PEEK() == (c))
142 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
152 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
154 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
325 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
445 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
456 c = PEEK(); in p_ere_exp()
488 if (isdigit((uch)PEEK())) { in p_ere_exp()
497 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]