Home | History | Annotate | Download | only in src

Lines Matching refs:ovector

68                    (3) PCRE2_ERROR_UNAVAILABLE: no group is in ovector
69 (4) PCRE2_ERROR_UNSET: all named groups in ovector are unset
89 if (match_data->ovector[n*2] != PCRE2_UNSET)
116 PCRE2_ERROR_UNAVAILABLE: ovector too small
129 memcpy(buffer, match_data->subject + match_data->ovector[stringnumber*2],
156 (3) PCRE2_ERROR_UNAVAILABLE: no group is in ovector
157 (4) PCRE2_ERROR_UNSET: all named groups in ovector are unset
177 if (match_data->ovector[n*2] != PCRE2_UNSET)
204 PCRE2_ERROR_UNAVAILABLE: ovector too small
221 memcpy(yield, match_data->subject + match_data->ovector[stringnumber*2],
284 if (match_data->ovector[n*2] != PCRE2_UNSET)
310 PCRE2_ERROR_UNAVAILABLE: ovector is too small
333 if (match_data->ovector[stringnumber*2] == PCRE2_UNSET)
342 left = match_data->ovector[stringnumber*2];
343 right = match_data->ovector[stringnumber*2+1];
381 PCRE2_SIZE *ovector;
384 if (count == 0) count = match_data->oveccount; /* Ovector too small */
387 ovector = match_data->ovector;
394 if (ovector[i+1] > ovector[i]) size += CU2BYTES(ovector[i+1] - ovector[i]);
416 size = (ovector[i+1] > ovector[i])? (ovector[i+1] - ovector[i]) : 0;
417 memcpy(sp, match_data->subject + ovector[i], CU2BYTES(size));