Searched refs:REQUIRE (Results 1 - 1 of 1) sorted by relevance
| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | regcomp.c | 56 #define REQUIRE(co, e) (void) ((co) || SETERROR(e)) macro 57 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 58 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) 59 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 207 (void) REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ 254 REQUIRE(MORE(), REG_EPAREN); 310 REQUIRE(MORE(), REG_EESCAPE); 315 REQUIRE(!MORE() || !isdigit(PEEK()), REG_BADRPT); 331 REQUIRE(!wascaret, REG_BADRPT); 358 REQUIRE(coun [all...] |
Completed in 4 milliseconds