Lines Matching defs:match
37 * match: m/rx/ or just /rx/
116 /* count size of memory required, starting at 1 for the whole-match
148 rx->match = NULL;
149 return 0; /* no match, nothing to do */
151 rx->match = pattern;
183 return (rx->match != NULL) ? rx->nmatch : 0;
188 * rx->match is a pointer and it's your responsibility to ensure
192 const char **match)
195 *match = rx->match + rx->pmatch[n].rm_so;
200 *match = NULL;
206 const char *match;
207 ap_rxplus_match(rx, n, &len, &match);
208 return apr_pstrndup(pool, match, len);