Searched refs:REQUIRE (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 195 #define REQUIRE(co, e) (void) ((co) || SETERROR(e)) macro 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)) 363 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere() 413 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() 469 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp() 474 REQUIRE(!MORE() || !isdigit((unsigned char)PEEK()), REG_BADRPT); in p_ere_exp() 490 REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp() 517 REQUIRE(count <= count2, REG_BADBR); in p_ere_exp() [all …]
|
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
D | assertions.h | 72 #define REQUIRE(cond) \ macro 81 #define REQUIRE(cond) ((void) (cond)) macro
|