Lines Matching refs:ovector
240 PCRE2_SIZE *ovector; in pcre2_substitute() local
264 ovector = pcre2_get_ovector_pointer(match_data); in pcre2_substitute()
368 if (ovector[1] < ovector[0] || ovector[0] < start_offset) in pcre2_substitute()
382 if (ovecsave[0] == ovector[0] && ovecsave[1] == ovector[1]) in pcre2_substitute()
384 if (ovector[0] == ovector[1] && ovecsave[2] != start_offset) in pcre2_substitute()
407 fraglength = ovector[0] - start_offset; in pcre2_substitute()
614 if (ovector[ng*2] != PCRE2_UNSET) in pcre2_substitute()
682 subptr = subject + ovector[group*2]; in pcre2_substitute()
683 subptrend = subject + ovector[group*2 + 1]; in pcre2_substitute()
829 ovecsave[0] = ovector[0]; in pcre2_substitute()
830 ovecsave[1] = ovector[1]; in pcre2_substitute()
833 goptions = (ovector[0] != ovector[1] || ovector[0] > start_offset)? 0 : in pcre2_substitute()
835 start_offset = ovector[1]; in pcre2_substitute()