Lines Matching refs:match
126 puts ("\nregexec without REG_NOSUB did not find the correct match");
144 int match;
147 match = re_search (&rpbuf, string, len, 0, len,
149 if (match < 0)
155 if (match + 11 > len
156 || string + match >= strchr (string, 'R')
157 || strncmp (string + match,
162 puts ("\nre_search did not find the correct match");
174 if (regs.start[0] != match || regs.end[0] != match + 11)
191 if (regs.start[l] != match + j