REQUIRE 57 regex/regcomp.c #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) REQUIRE 58 regex/regcomp.c #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) REQUIRE 59 regex/regcomp.c #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) REQUIRE 207 regex/regcomp.c (void) REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ REQUIRE 254 regex/regcomp.c REQUIRE(MORE(), REG_EPAREN); REQUIRE 310 regex/regcomp.c REQUIRE(MORE(), REG_EESCAPE); REQUIRE 315 regex/regcomp.c REQUIRE(!MORE() || !isdigit(PEEK()), REG_BADRPT); REQUIRE 331 regex/regcomp.c REQUIRE(!wascaret, REG_BADRPT); REQUIRE 358 regex/regcomp.c REQUIRE(count <= count2, REG_BADBR); REQUIRE 367 regex/regcomp.c REQUIRE(MORE(), REG_EBRACE); REQUIRE 390 regex/regcomp.c REQUIRE(MORE(), REG_EMPTY); REQUIRE 433 regex/regcomp.c REQUIRE(HERE() != start, REG_EMPTY); /* require nonempty */ REQUIRE 458 regex/regcomp.c REQUIRE(MORE(), REG_EESCAPE); REQUIRE 488 regex/regcomp.c REQUIRE(EATTWO('\\', ')'), REG_EPAREN); REQUIRE 518 regex/regcomp.c REQUIRE(starordinary, REG_BADRPT); REQUIRE 536 regex/regcomp.c REQUIRE(count <= count2, REG_BADBR); REQUIRE 545 regex/regcomp.c REQUIRE(MORE(), REG_EBRACE); REQUIRE 570 regex/regcomp.c REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR); REQUIRE 681 regex/regcomp.c REQUIRE(MORE(), REG_EBRACK); REQUIRE 683 regex/regcomp.c REQUIRE(c != '-' && c != ']', REG_ECTYPE); REQUIRE 685 regex/regcomp.c REQUIRE(MORE(), REG_EBRACK); REQUIRE 686 regex/regcomp.c REQUIRE(EATTWO(':', ']'), REG_ECTYPE); REQUIRE 690 regex/regcomp.c REQUIRE(MORE(), REG_EBRACK); REQUIRE 692 regex/regcomp.c REQUIRE(c != '-' && c != ']', REG_ECOLLATE); REQUIRE 694 regex/regcomp.c REQUIRE(MORE(), REG_EBRACK); REQUIRE 695 regex/regcomp.c REQUIRE(EATTWO('=', ']'), REG_ECOLLATE); REQUIRE 710 regex/regcomp.c REQUIRE(start <= finish, REG_ERANGE); REQUIRE 778 regex/regcomp.c REQUIRE(MORE(), REG_EBRACK); REQUIRE 784 regex/regcomp.c REQUIRE(EATTWO('.', ']'), REG_ECOLLATE);