Searched refs:MORE (Results 1 – 1 of 1) sorted by relevance
137 #define MORE() (p->next < p->end) macro139 #define SEE(c) (MORE() && PEEK() == (c))140 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))149 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))150 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))151 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))309 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()334 assert(!MORE() || SEE(stop)); in p_ere()351 assert(MORE()); /* caller should have ensured this */ in p_ere_exp()357 (void)REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()[all …]