• Home
  • Raw
  • Download

Lines Matching refs:matcher

352     REMatcher = REPattern->matcher(unEscapedInput, status);  in doRegexLMTest()
428 REMatcher = &REPattern->matcher(status)->reset(&inputText); in doRegexLMTestUTF8()
554 … RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status); in Basic()
699 RegexMatcher matcher(&pattern, 0, status); in UTextBasic() local
705 matcher.reset(&input); in UTextBasic()
707 REGEX_ASSERT_UTEXT_UTF8(str_abc, matcher.inputText()); in UTextBasic()
709 matcher.reset(matcher.inputText()); in UTextBasic()
711 REGEX_ASSERT_UTEXT_UTF8(str_abc, matcher.inputText()); in UTextBasic()
756 RegexMatcher *m1 = pat2->matcher(inStr1, status); in API_Match()
880 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
882 REGEX_ASSERT(matcher->lookingAt(status) == TRUE); in API_Match()
887 int32_t actualStart = matcher->start(i, status); in API_Match()
893 int32_t actualEnd = matcher->end(i, status); in API_Match()
901 REGEX_ASSERT(matcher->start(0, status) == matcher->start(status)); in API_Match()
902 REGEX_ASSERT(matcher->end(0, status) == matcher->end(status)); in API_Match()
904 REGEX_ASSERT_FAIL(matcher->start(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
905 REGEX_ASSERT_FAIL(matcher->start( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
906 matcher->reset(); in API_Match()
907 REGEX_ASSERT_FAIL(matcher->start( 0, status), U_REGEX_INVALID_STATE); in API_Match()
909 matcher->lookingAt(status); in API_Match()
910 REGEX_ASSERT(matcher->group(status) == "0123456789"); in API_Match()
911 REGEX_ASSERT(matcher->group(0, status) == "0123456789"); in API_Match()
912 REGEX_ASSERT(matcher->group(1, status) == "234567" ); in API_Match()
913 REGEX_ASSERT(matcher->group(2, status) == "45" ); in API_Match()
914 REGEX_ASSERT(matcher->group(3, status) == "89" ); in API_Match()
916 REGEX_ASSERT_FAIL(matcher->group(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
917 REGEX_ASSERT_FAIL(matcher->group( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
918 matcher->reset(); in API_Match()
919 REGEX_ASSERT_FAIL(matcher->group( 0, status), U_REGEX_INVALID_STATE); in API_Match()
921 delete matcher; in API_Match()
940 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
942 REGEX_ASSERT(matcher->find()); in API_Match()
943 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
944 REGEX_ASSERT(matcher->find()); in API_Match()
945 REGEX_ASSERT(matcher->start(status) == 6); in API_Match()
946 REGEX_ASSERT(matcher->find()); in API_Match()
947 REGEX_ASSERT(matcher->start(status) == 12); in API_Match()
948 REGEX_ASSERT(matcher->find() == FALSE); in API_Match()
949 REGEX_ASSERT(matcher->find() == FALSE); in API_Match()
951 matcher->reset(); in API_Match()
952 REGEX_ASSERT(matcher->find()); in API_Match()
953 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
955 REGEX_ASSERT(matcher->find(0, status)); in API_Match()
956 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
957 REGEX_ASSERT(matcher->find(1, status)); in API_Match()
958 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
959 REGEX_ASSERT(matcher->find(2, status)); in API_Match()
960 REGEX_ASSERT(matcher->start(status) == 6); in API_Match()
961 REGEX_ASSERT(matcher->find(12, status)); in API_Match()
962 REGEX_ASSERT(matcher->start(status) == 12); in API_Match()
963 REGEX_ASSERT(matcher->find(13, status) == FALSE); in API_Match()
964 REGEX_ASSERT(matcher->find(16, status) == FALSE); in API_Match()
965 REGEX_ASSERT(matcher->find(17, status) == FALSE); in API_Match()
966 REGEX_ASSERT_FAIL(matcher->start(status), U_REGEX_INVALID_STATE); in API_Match()
969 REGEX_ASSERT_FAIL(matcher->find(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
971 REGEX_ASSERT_FAIL(matcher->find(18, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
973 REGEX_ASSERT(matcher->groupCount() == 0); in API_Match()
975 delete matcher; in API_Match()
994 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
996 REGEX_ASSERT(matcher->find()); in API_Match()
997 REGEX_ASSERT(matcher->start(status) == 0); in API_Match()
998 REGEX_ASSERT(matcher->start(1, status) == -1); in API_Match()
999 REGEX_ASSERT(matcher->start(2, status) == 1); in API_Match()
1001 REGEX_ASSERT(matcher->find()); in API_Match()
1002 REGEX_ASSERT(matcher->start(status) == 4); in API_Match()
1003 REGEX_ASSERT(matcher->start(1, status) == 4); in API_Match()
1004 REGEX_ASSERT(matcher->start(2, status) == -1); in API_Match()
1007 delete matcher; in API_Match()
1081 RegexMatcher *m = p->matcher(status); in API_Match()
1185 RegexMatcher *m2 = p->matcher(ucharString, status); // should not compile. in API_Match()
1202 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match() local
1204 REGEX_ASSERT(matcher.getTimeLimit() == 0); in API_Match()
1205 matcher.setTimeLimit(100, status); in API_Match()
1206 REGEX_ASSERT(matcher.getTimeLimit() == 100); in API_Match()
1207 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1214 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match() local
1216 matcher.setTimeLimit(100, status); in API_Match()
1217 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1230 RegexMatcher matcher("(A)+A$", testString, 0, status); in API_Match() local
1233 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1238 matcher.setStackLimit(0, status); in API_Match()
1240 REGEX_ASSERT(matcher.lookingAt(status) == TRUE); in API_Match()
1242 REGEX_ASSERT(matcher.getStackLimit() == 0); in API_Match()
1246 matcher.setStackLimit(10000, status); in API_Match()
1247 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1249 REGEX_ASSERT(matcher.getStackLimit() == 10000); in API_Match()
1257 RegexMatcher matcher("abc", testString, 0, status); in API_Match() local
1259 matcher.setStackLimit(30, status); in API_Match()
1261 REGEX_ASSERT(matcher.matches(status) == TRUE); in API_Match()
1263 REGEX_ASSERT(matcher.getStackLimit() == 30); in API_Match()
1267 matcher.setStackLimit(1000, status); in API_Match()
1269 matcher.setStackLimit(-1, status); in API_Match()
1271 REGEX_ASSERT(matcher.getStackLimit() == 1000); in API_Match()
1301 RegexMatcher *matcher = pat->matcher(data, status); in API_Replace() local
1307 dest = matcher->replaceFirst("yz", status); in API_Replace()
1311 dest = matcher->replaceAll("yz", status); in API_Replace()
1319 matcher->reset(d2); in API_Replace()
1320 dest = matcher->replaceFirst("yz", status); in API_Replace()
1324 dest = matcher->replaceAll("yz", status); in API_Replace()
1332 matcher->reset(d3); in API_Replace()
1333 dest = matcher->replaceFirst("yz", status); in API_Replace()
1337 dest = matcher->replaceAll("yz", status); in API_Replace()
1344 matcher->reset(data); // ".abc..abc...abc.." in API_Replace()
1345 dest = matcher->replaceFirst("", status); in API_Replace()
1349 dest = matcher->replaceAll("", status); in API_Replace()
1357 matcher->reset(d4); in API_Replace()
1358 dest = matcher->replaceFirst("xyz", status); in API_Replace()
1362 dest = matcher->replaceAll("xyz", status); in API_Replace()
1373 RegexMatcher *matcher2 = pat2->matcher(d5, status); in API_Replace()
1402 matcher->reset(src); in API_Replace()
1403 UnicodeString result = matcher->replaceAll(substitute, status); in API_Replace()
1410 matcher->reset(src); in API_Replace()
1411 UnicodeString result = matcher->replaceAll(substitute, status); in API_Replace()
1464 delete matcher; in API_Replace()
1541 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern()
1773 RegexMatcher *m = pat1->matcher(Hello, status); in API_Pattern()
1830 RegexMatcher *m1 = &pat2->matcher(status)->reset(&input1); in API_Match_UTF8()
1961 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
1963 REGEX_ASSERT(matcher->lookingAt(status) == TRUE); in API_Match_UTF8()
1968 int32_t actualStart = matcher->start(i, status); in API_Match_UTF8()
1974 int32_t actualEnd = matcher->end(i, status); in API_Match_UTF8()
1982 REGEX_ASSERT(matcher->start(0, status) == matcher->start(status)); in API_Match_UTF8()
1983 REGEX_ASSERT(matcher->end(0, status) == matcher->end(status)); in API_Match_UTF8()
1985 REGEX_ASSERT_FAIL(matcher->start(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
1986 REGEX_ASSERT_FAIL(matcher->start( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
1987 matcher->reset(); in API_Match_UTF8()
1988 REGEX_ASSERT_FAIL(matcher->start( 0, status), U_REGEX_INVALID_STATE); in API_Match_UTF8()
1990 matcher->lookingAt(status); in API_Match_UTF8()
1999 result = matcher->group((UText *)NULL, group_len, status); in API_Match_UTF8()
2003 result = matcher->group(0, &destText, group_len, status); in API_Match_UTF8()
2012 result = matcher->group(0, NULL, length, status); in API_Match_UTF8()
2016 result = matcher->group(0, &destText, length, status); in API_Match_UTF8()
2024 result = matcher->group(1, NULL, length, status); in API_Match_UTF8()
2031 result = matcher->group(1, &destText, length, status); in API_Match_UTF8()
2040 result = matcher->group(2, NULL, length, status); in API_Match_UTF8()
2047 result = matcher->group(2, &destText, length, status); in API_Match_UTF8()
2056 result = matcher->group(3, NULL, length, status); in API_Match_UTF8()
2063 result = matcher->group(3, &destText, length, status); in API_Match_UTF8()
2073 REGEX_ASSERT_FAIL(matcher->group(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2075 REGEX_ASSERT_FAIL(matcher->group( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2077 matcher->reset(); in API_Match_UTF8()
2078 REGEX_ASSERT_FAIL(matcher->group( 0, status), U_REGEX_INVALID_STATE); in API_Match_UTF8()
2080 delete matcher; in API_Match_UTF8()
2106 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
2108 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2109 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2110 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2111 REGEX_ASSERT(matcher->start(status) == 6); in API_Match_UTF8()
2112 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2113 REGEX_ASSERT(matcher->start(status) == 12); in API_Match_UTF8()
2114 REGEX_ASSERT(matcher->find() == FALSE); in API_Match_UTF8()
2115 REGEX_ASSERT(matcher->find() == FALSE); in API_Match_UTF8()
2117 matcher->reset(); in API_Match_UTF8()
2118 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2119 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2121 REGEX_ASSERT(matcher->find(0, status)); in API_Match_UTF8()
2122 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2123 REGEX_ASSERT(matcher->find(1, status)); in API_Match_UTF8()
2124 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2125 REGEX_ASSERT(matcher->find(2, status)); in API_Match_UTF8()
2126 REGEX_ASSERT(matcher->start(status) == 6); in API_Match_UTF8()
2127 REGEX_ASSERT(matcher->find(12, status)); in API_Match_UTF8()
2128 REGEX_ASSERT(matcher->start(status) == 12); in API_Match_UTF8()
2129 REGEX_ASSERT(matcher->find(13, status) == FALSE); in API_Match_UTF8()
2130 REGEX_ASSERT(matcher->find(16, status) == FALSE); in API_Match_UTF8()
2131 REGEX_ASSERT(matcher->find(17, status) == FALSE); in API_Match_UTF8()
2132 REGEX_ASSERT_FAIL(matcher->start(status), U_REGEX_INVALID_STATE); in API_Match_UTF8()
2135 REGEX_ASSERT_FAIL(matcher->find(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2137 REGEX_ASSERT_FAIL(matcher->find(18, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2139 REGEX_ASSERT(matcher->groupCount() == 0); in API_Match_UTF8()
2141 delete matcher; in API_Match_UTF8()
2168 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
2170 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2171 REGEX_ASSERT(matcher->start(status) == 0); in API_Match_UTF8()
2172 REGEX_ASSERT(matcher->start(1, status) == -1); in API_Match_UTF8()
2173 REGEX_ASSERT(matcher->start(2, status) == 1); in API_Match_UTF8()
2175 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2176 REGEX_ASSERT(matcher->start(status) == 4); in API_Match_UTF8()
2177 REGEX_ASSERT(matcher->start(1, status) == 4); in API_Match_UTF8()
2178 REGEX_ASSERT(matcher->start(2, status) == -1); in API_Match_UTF8()
2181 delete matcher; in API_Match_UTF8()
2265 RegexMatcher *m = p->matcher(status); in API_Match_UTF8()
2404 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8() local
2419 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2424 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2429 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2436 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2446 matcher->reset(&dataText); in API_Replace_UTF8()
2448 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2452 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2457 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2462 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2471 matcher->reset(&dataText); in API_Replace_UTF8()
2473 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2477 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2482 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2486 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2495 matcher->reset(&dataText); in API_Replace_UTF8()
2498 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2503 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2508 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2514 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2524 matcher->reset(&dataText); in API_Replace_UTF8()
2528 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2533 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2538 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2543 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2558 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2640 matcher->reset(&dataText); in API_Replace_UTF8()
2642 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2648 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2658 matcher->reset(&dataText); in API_Replace_UTF8()
2667 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2672 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2739 delete matcher; in API_Replace_UTF8()
2833 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern_UTF8()
3061 RegexMatcher matcher(UnicodeString("(:)"), 0, status); in API_Pattern_UTF8() local
3067 int32_t numFields = matcher.split(textToSplit, splits, UPRV_LENGTHOF(splits), status); in API_Pattern_UTF8()
3326 RegexMatcher *matcher = NULL, *UTF8Matcher = NULL; in regex_find() local
3473 parseMatcher = parsePat->matcher(unEscapedInput, status); in regex_find()
3506 matcher = callerPattern->matcher(deTaggedInput, status); in regex_find()
3509 matcher->setTrace(TRUE); in regex_find()
3520 UTF8Matcher = &UTF8Pattern->matcher(status)->reset(&inputText); in regex_find()
3571 matcher->region(regionStart, regionEnd, status); in regex_find()
3579 matcher->useAnchoringBounds(FALSE); in regex_find()
3585 matcher->useTransparentBounds(TRUE); in regex_find()
3600 isMatch = matcher->matches(status); in regex_find()
3605 isMatch = matcher->lookingAt(status); in regex_find()
3610 isMatch = matcher->find(); in regex_find()
3616 matcher->setTrace(FALSE); in regex_find()
3642 …errln("Error at line %d: No match expected, but one found at position %d.", line, matcher->start(s… in regex_find()
3656 for (i=0; i<=matcher->groupCount(); i++) { in regex_find()
3659 if (matcher->start(i, status) != expectedStart) { in regex_find()
3661 line, i, expectedStart, matcher->start(i, status)); in regex_find()
3673 if (matcher->end(i, status) != expectedEnd) { in regex_find()
3675 line, i, expectedEnd, matcher->end(i, status)); in regex_find()
3687 if ( matcher->groupCount()+1 < groupStarts.size()) { in regex_find()
3689 line, groupStarts.size()-1, matcher->groupCount()); in regex_find()
3699 matcher->requireEnd() == TRUE) { in regex_find()
3709 matcher->requireEnd() == FALSE) { in regex_find()
3719 matcher->hitEnd() == TRUE) { in regex_find()
3729 matcher->hitEnd() == FALSE) { in regex_find()
3749 delete matcher; in regex_find()
4012 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTests()
4027 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTests()
4044 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTests()
4048 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTests()
4159 RegexMatcher *testMat = testPat->matcher(matchString, status); in PerlTests()
4381 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTestsUTF8()
4396 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTestsUTF8()
4413 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTestsUTF8()
4417 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTestsUTF8()
4554 RegexMatcher *testMat = &testPat->matcher(status)->reset(&inputText); in PerlTestsUTF8()
4737 RegexMatcher matcher(pattern, s, flags, status); in Bug6149() local
4739 REGEX_ASSERT_FAIL(result=matcher.matches(status), U_REGEX_STACK_OVERFLOW); in Bug6149()
4782 RegexMatcher matcher("x", 0, status); in Callbacks() local
4784 matcher.getMatchCallback(returnedFn, returnedContext, status); in Callbacks()
4796 …RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)+\\2)+x"), 0, status); // A pattern that can run … in Callbacks() local
4798 matcher.setMatchCallback(testCallBackFn, &cbInfo, status); in Callbacks()
4800 matcher.getMatchCallback(returnedFn, returnedContext, status); in Callbacks()
4809 matcher.reset(s); in Callbacks()
4810 REGEX_ASSERT(matcher.matches(status)); in Callbacks()
4819 matcher.reset(s); in Callbacks()
4820 REGEX_ASSERT(matcher.matches(status)==FALSE); in Callbacks()
4828 matcher.reset(s); in Callbacks()
4829 REGEX_ASSERT(matcher.matches(status)==FALSE); in Callbacks()
4837 matcher.reset(s); in Callbacks()
4838 REGEX_ASSERT(matcher.find(status)==FALSE); in Callbacks()
4886 RegexMatcher matcher("x", 0, status); in FindProgressCallbacks() local
4888 matcher.getFindProgressCallback(returnedFn, returnedContext, status); in FindProgressCallbacks()
4900 RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)\\2)x"), 0, status); in FindProgressCallbacks() local
4902 matcher.setFindProgressCallback(testProgressCallBackFn, &cbInfo, status); in FindProgressCallbacks()
4904 matcher.getFindProgressCallback(returnedFn, returnedContext, status); in FindProgressCallbacks()
4913 matcher.reset(s); in FindProgressCallbacks()
4915 matcher.setTrace(TRUE); in FindProgressCallbacks()
4917 REGEX_ASSERT(matcher.find(0, status)); in FindProgressCallbacks()
4926 matcher.reset(s); in FindProgressCallbacks()
4927 REGEX_ASSERT(matcher.find(0, status)==FALSE); in FindProgressCallbacks()
4935 matcher.reset(s1); in FindProgressCallbacks()
4936 REGEX_ASSERT(matcher.find(0, status)==FALSE); in FindProgressCallbacks()
4944 matcher.reset(s2); in FindProgressCallbacks()
4945 REGEX_ASSERT(matcher.find(0, status)==FALSE); in FindProgressCallbacks()
4950 REGEX_ASSERT(matcher.find(cbInfo.lastIndex, status)); in FindProgressCallbacks()
5457 REMatcher = REPattern->matcher(s, status); in Bug7651()
5467 REMatcher = REPattern->matcher(s, status); in Bug7651()
5655 LocalPointer<RegexMatcher> matcher(compiledPat->matcher(status)); in TestCase11049() local
5657 matcher->reset(ut); in TestCase11049()
5658 UBool result = matcher->find(); in TestCase11049()
5673 matcher->reset(ut); in TestCase11049()
5674 result = matcher->find(); in TestCase11049()
5753 RegexMatcher matcher(UnicodeString("(A)|(B)"), 0, status); in TestBug11480() local
5755 matcher.reset(&ut); in TestBug11480()
5756 REGEX_ASSERT(matcher.lookingAt(0, status)); in TestBug11480()
5761 matcher.group(1, &group, groupLen, status); in TestBug11480()
5767 matcher.group(2, &group, groupLen, status); in TestBug11480()
5770 REGEX_ASSERT(matcher.start(2, status) == -1); in TestBug11480()
5823 RegexMatcher matcher(upat, 0, status); in TestBug13631() local
5827 matcher.reset(ut); in TestBug13631()
5828 while (matcher.find()) { in TestBug13631()