Lines Matching refs:groupStarts
3387 UVector groupStarts(status); in regex_find() local
3551 set(groupStarts, deTaggedInput.length(), groupNum); in regex_find()
3556 REGEX_ASSERT_L(groupStarts.size() == groupEnds.size(), line); in regex_find()
3600 for (i=0; i<groupStarts.size(); i++) { in regex_find()
3601 int32_t start = groupStarts.elementAti(i); in regex_find()
3686 if (isMatch == FALSE && groupStarts.size() != 0) { in regex_find()
3690 } else if (UTF8Matcher != NULL && isUTF8Match == FALSE && groupStarts.size() != 0) { in regex_find()
3698 if (isMatch && groupStarts.size() == 0) { in regex_find()
3701 } else if (UTF8Matcher != NULL && isUTF8Match && groupStarts.size() == 0) { in regex_find()
3710 int32_t expectedStart = (i >= groupStarts.size()? -1 : groupStarts.elementAti(i)); in regex_find()
3740 if ( matcher->groupCount()+1 < groupStarts.size()) { in regex_find()
3742 line, groupStarts.size()-1, matcher->groupCount()); in regex_find()
3745 else if (UTF8Matcher != NULL && UTF8Matcher->groupCount()+1 < groupStarts.size()) { in regex_find()
3747 line, groupStarts.size()-1, UTF8Matcher->groupCount()); in regex_find()