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

  /src/lib/libcompat/regexp/
regexp.c 782 STATIC int regmatch __P((char *));
879 if (regmatch((char *)prog->program + 1)) { /* XXX */
890 - regmatch - main matching routine
900 regmatch(prog) function
992 if (regmatch(next)) {
1019 if (regmatch(next)) {
1039 if (regmatch(OPERAND(scan)))
1069 if (regmatch(next))
  /src/external/bsd/less/dist/
regexp.c 715 STATIC int regmatch();
819 if (regmatch(prog->program + 1)) {
828 - regmatch - main matching routine
838 regmatch(prog) function
913 if (regmatch(next)) {
942 if (regmatch(next)) {
964 if (regmatch(OPERAND(scan)))
995 if (regmatch(next))
  /src/usr.bin/pkill/
pkill.c 129 regmatch_t regmatch; local
335 rv = regexec(&reg, buf, 1, &regmatch, 0);
338 if (regmatch.rm_so == 0 &&
339 regmatch.rm_eo ==
  /src/external/bsd/tmux/dist/
window-copy.c 3364 regmatch_t regmatch; local
3396 if (regexec(reg, buf, 1, &regmatch, eflags) == 0 &&
3397 regmatch.rm_so != regmatch.rm_eo) {
3401 buf + regmatch.rm_so);
3406 buf + regmatch.rm_eo);
3520 regmatch_t regmatch; local
3525 while (regexec(preg, buf + px, 1, &regmatch, eflags) == 0) {
3526 if (regmatch.rm_so == regmatch.rm_eo
    [all...]
  /src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c 23035 static int regmatch(regex_t *preg, int prog);
23152 if (regmatch(preg, 1)) {
23258 if (regmatch(preg, next)) {
23285 if (regmatch(preg, scan + 5)) {
23297 if (regmatch(preg, regnext(preg, scan))) {
23302 if (regmatch(preg, scan + 5)) {
23311 if (regmatch(preg, scan + 5)) {
23317 return regmatch(preg, regnext(preg, scan));
23321 static int regmatch(regex_t *preg, int prog) function
23432 if (regmatch(preg, OPERAND(scan)))
    [all...]

Completed in 48 milliseconds