HomeSort by: relevance | last modified time | path
    Searched refs:regmust (Results 1 - 5 of 5) sorted by relevancy

  /src/include/
regexp.h 89 char *regmust; /* Internal use only. */ member in struct:regexp
  /src/external/bsd/less/dist/
regexp.h 19 char *regmust; /* Internal use only. */ member in struct:regexp
regexp.c 51 * regmust string (pointer into program) that match must include, or NULL
52 * regmlen length of regmust string
55 * for a match, cutting down the work a lot. Regmust permits fast rejection
56 * of lines that cannot possibly match. The regmust tests are costly enough
57 * that regcomp() supplies a regmust only if the r.e. contains something
256 r->regmust = NULL;
271 * regmust. Resolve ties in favor of later strings, since
284 r->regmust = longest;
748 if (prog->regmust != NULL) {
750 while ((s = strchr(s, prog->regmust[0])) != NULL)
    [all...]
  /src/lib/libcompat/regexp/
regexp.c 55 * regmust string (pointer into program) that match must include, or NULL
56 * regmlen length of regmust string
59 * for a match, cutting down the work a lot. Regmust permits fast rejection
60 * of lines that cannot possibly match. The regmust tests are costly enough
61 * that regcomp() supplies a regmust only if the r.e. contains something
257 r->regmust = NULL;
272 * regmust. Resolve ties in favor of later strings, since
285 r->regmust = longest;
814 if (prog->regmust != NULL) {
817 while ((s = strchr(s, prog->regmust[0])) != NULL)
    [all...]
  /src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c 1074 int regmust; member in struct:regexp
22306 preg->regmust = 0;
22331 preg->regmust = longest;
23073 if (preg->regmust != 0) {
23075 while ((s = str_find(s, preg->program[preg->regmust], preg->cflags & REG_ICASE)) != NULL) {
23076 if (prefix_cmp(preg->program + preg->regmust, preg->regmlen, s, preg->cflags & REG_ICASE) >= 0) {

Completed in 64 milliseconds