Searched refs:MORE (Results 1 – 1 of 1) sorted by relevance
184 #define MORE() (p->next < p->end) macro186 #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))197 #define MUSTEAT(c, e) (void) (REQUIRE(MORE() && GETNEXT() == (c), e))198 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))361 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()386 assert(!MORE() || SEE(stop)); in p_ere()407 assert(MORE()); /* caller should have ensured this */ in p_ere_exp()413 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()[all …]