Home
last modified time | relevance | path

Searched refs:regstart (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/less/
H A Dregexp.c47 * regstart char that must begin a match; '\0' if none obvious
251 r->regstart = '\0'; /* Worst-case defaults. */
261 r->regstart = *OPERAND(scan);
269 * the regstart check works with the beginning of the r.e.
752 if (prog->regstart != '\0')
754 while ((s = strchr(s, prog->regstart)) != NULL) {
1107 if (r->regstart != '\0')
1108 printf("start `%c' ", r->regstart);
H A Dregexp.h15 char regstart; /* Internal use only. */ member
/freebsd/contrib/sqlite3/autosetup/
H A Djimsh0.c1072 int regstart; member
22315 preg->regstart = 0; in jim_regcomp()
22325 preg->regstart = preg->program[OPERAND(scan)]; in jim_regcomp()
23126 if (preg->regstart != '\0') { in jim_regexec()
23128 while ((s = str_find(s, preg->regstart, preg->cflags & REG_ICASE)) != NULL) { in jim_regexec()