Lines Matching refs:matcher

409     REMatcher = REPattern->matcher(unEscapedInput, status);  in doRegexLMTest()
485 REMatcher = &REPattern->matcher(status)->reset(&inputText); in doRegexLMTestUTF8()
611 … RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status); in Basic()
756 RegexMatcher matcher(&pattern, 0, status); in UTextBasic() local
762 matcher.reset(&input); in UTextBasic()
764 REGEX_ASSERT_UTEXT_UTF8(str_abc, matcher.inputText()); in UTextBasic()
766 matcher.reset(matcher.inputText()); in UTextBasic()
768 REGEX_ASSERT_UTEXT_UTF8(str_abc, matcher.inputText()); in UTextBasic()
813 RegexMatcher *m1 = pat2->matcher(inStr1, status); in API_Match()
937 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
939 REGEX_ASSERT(matcher->lookingAt(status) == TRUE); in API_Match()
944 int32_t actualStart = matcher->start(i, status); in API_Match()
950 int32_t actualEnd = matcher->end(i, status); in API_Match()
958 REGEX_ASSERT(matcher->start(0, status) == matcher->start(status)); in API_Match()
959 REGEX_ASSERT(matcher->end(0, status) == matcher->end(status)); in API_Match()
961 REGEX_ASSERT_FAIL(matcher->start(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
962 REGEX_ASSERT_FAIL(matcher->start( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
963 matcher->reset(); in API_Match()
964 REGEX_ASSERT_FAIL(matcher->start( 0, status), U_REGEX_INVALID_STATE); in API_Match()
966 matcher->lookingAt(status); in API_Match()
967 REGEX_ASSERT(matcher->group(status) == "0123456789"); in API_Match()
968 REGEX_ASSERT(matcher->group(0, status) == "0123456789"); in API_Match()
969 REGEX_ASSERT(matcher->group(1, status) == "234567" ); in API_Match()
970 REGEX_ASSERT(matcher->group(2, status) == "45" ); in API_Match()
971 REGEX_ASSERT(matcher->group(3, status) == "89" ); in API_Match()
973 REGEX_ASSERT_FAIL(matcher->group(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
974 REGEX_ASSERT_FAIL(matcher->group( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
975 matcher->reset(); in API_Match()
976 REGEX_ASSERT_FAIL(matcher->group( 0, status), U_REGEX_INVALID_STATE); in API_Match()
978 delete matcher; in API_Match()
997 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
999 REGEX_ASSERT(matcher->find()); in API_Match()
1000 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
1001 REGEX_ASSERT(matcher->find()); in API_Match()
1002 REGEX_ASSERT(matcher->start(status) == 6); in API_Match()
1003 REGEX_ASSERT(matcher->find()); in API_Match()
1004 REGEX_ASSERT(matcher->start(status) == 12); in API_Match()
1005 REGEX_ASSERT(matcher->find() == FALSE); in API_Match()
1006 REGEX_ASSERT(matcher->find() == FALSE); in API_Match()
1008 matcher->reset(); in API_Match()
1009 REGEX_ASSERT(matcher->find()); in API_Match()
1010 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
1012 REGEX_ASSERT(matcher->find(0, status)); in API_Match()
1013 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
1014 REGEX_ASSERT(matcher->find(1, status)); in API_Match()
1015 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
1016 REGEX_ASSERT(matcher->find(2, status)); in API_Match()
1017 REGEX_ASSERT(matcher->start(status) == 6); in API_Match()
1018 REGEX_ASSERT(matcher->find(12, status)); in API_Match()
1019 REGEX_ASSERT(matcher->start(status) == 12); in API_Match()
1020 REGEX_ASSERT(matcher->find(13, status) == FALSE); in API_Match()
1021 REGEX_ASSERT(matcher->find(16, status) == FALSE); in API_Match()
1022 REGEX_ASSERT(matcher->find(17, status) == FALSE); in API_Match()
1023 REGEX_ASSERT_FAIL(matcher->start(status), U_REGEX_INVALID_STATE); in API_Match()
1026 REGEX_ASSERT_FAIL(matcher->find(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
1028 REGEX_ASSERT_FAIL(matcher->find(18, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
1030 REGEX_ASSERT(matcher->groupCount() == 0); in API_Match()
1032 delete matcher; in API_Match()
1051 RegexMatcher *matcher = pat->matcher(data, status); in API_Match() local
1053 REGEX_ASSERT(matcher->find()); in API_Match()
1054 REGEX_ASSERT(matcher->start(status) == 0); in API_Match()
1055 REGEX_ASSERT(matcher->start(1, status) == -1); in API_Match()
1056 REGEX_ASSERT(matcher->start(2, status) == 1); in API_Match()
1058 REGEX_ASSERT(matcher->find()); in API_Match()
1059 REGEX_ASSERT(matcher->start(status) == 4); in API_Match()
1060 REGEX_ASSERT(matcher->start(1, status) == 4); in API_Match()
1061 REGEX_ASSERT(matcher->start(2, status) == -1); in API_Match()
1064 delete matcher; in API_Match()
1138 RegexMatcher *m = p->matcher(status); in API_Match()
1242 RegexMatcher *m2 = p->matcher(ucharString, status); // should not compile. in API_Match()
1259 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match() local
1261 REGEX_ASSERT(matcher.getTimeLimit() == 0); in API_Match()
1262 matcher.setTimeLimit(100, status); in API_Match()
1263 REGEX_ASSERT(matcher.getTimeLimit() == 100); in API_Match()
1264 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1271 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match() local
1273 matcher.setTimeLimit(100, status); in API_Match()
1274 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1287 RegexMatcher matcher("(A)+A$", testString, 0, status); in API_Match() local
1290 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1295 matcher.setStackLimit(0, status); in API_Match()
1297 REGEX_ASSERT(matcher.lookingAt(status) == TRUE); in API_Match()
1299 REGEX_ASSERT(matcher.getStackLimit() == 0); in API_Match()
1303 matcher.setStackLimit(10000, status); in API_Match()
1304 REGEX_ASSERT(matcher.lookingAt(status) == FALSE); in API_Match()
1306 REGEX_ASSERT(matcher.getStackLimit() == 10000); in API_Match()
1314 RegexMatcher matcher("abc", testString, 0, status); in API_Match() local
1316 matcher.setStackLimit(30, status); in API_Match()
1318 REGEX_ASSERT(matcher.matches(status) == TRUE); in API_Match()
1320 REGEX_ASSERT(matcher.getStackLimit() == 30); in API_Match()
1324 matcher.setStackLimit(1000, status); in API_Match()
1326 matcher.setStackLimit(-1, status); in API_Match()
1328 REGEX_ASSERT(matcher.getStackLimit() == 1000); in API_Match()
1358 RegexMatcher *matcher = pat->matcher(data, status); in API_Replace() local
1364 dest = matcher->replaceFirst("yz", status); in API_Replace()
1368 dest = matcher->replaceAll("yz", status); in API_Replace()
1376 matcher->reset(d2); in API_Replace()
1377 dest = matcher->replaceFirst("yz", status); in API_Replace()
1381 dest = matcher->replaceAll("yz", status); in API_Replace()
1389 matcher->reset(d3); in API_Replace()
1390 dest = matcher->replaceFirst("yz", status); in API_Replace()
1394 dest = matcher->replaceAll("yz", status); in API_Replace()
1401 matcher->reset(data); // ".abc..abc...abc.." in API_Replace()
1402 dest = matcher->replaceFirst("", status); in API_Replace()
1406 dest = matcher->replaceAll("", status); in API_Replace()
1414 matcher->reset(d4); in API_Replace()
1415 dest = matcher->replaceFirst("xyz", status); in API_Replace()
1419 dest = matcher->replaceAll("xyz", status); in API_Replace()
1430 RegexMatcher *matcher2 = pat2->matcher(d5, status); in API_Replace()
1459 matcher->reset(src); in API_Replace()
1460 UnicodeString result = matcher->replaceAll(substitute, status); in API_Replace()
1467 matcher->reset(src); in API_Replace()
1468 UnicodeString result = matcher->replaceAll(substitute, status); in API_Replace()
1521 delete matcher; in API_Replace()
1598 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern()
1830 RegexMatcher *m = pat1->matcher(Hello, status); in API_Pattern()
1887 RegexMatcher *m1 = &pat2->matcher(status)->reset(&input1); in API_Match_UTF8()
2018 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
2020 REGEX_ASSERT(matcher->lookingAt(status) == TRUE); in API_Match_UTF8()
2025 int32_t actualStart = matcher->start(i, status); in API_Match_UTF8()
2031 int32_t actualEnd = matcher->end(i, status); in API_Match_UTF8()
2039 REGEX_ASSERT(matcher->start(0, status) == matcher->start(status)); in API_Match_UTF8()
2040 REGEX_ASSERT(matcher->end(0, status) == matcher->end(status)); in API_Match_UTF8()
2042 REGEX_ASSERT_FAIL(matcher->start(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2043 REGEX_ASSERT_FAIL(matcher->start( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2044 matcher->reset(); in API_Match_UTF8()
2045 REGEX_ASSERT_FAIL(matcher->start( 0, status), U_REGEX_INVALID_STATE); in API_Match_UTF8()
2047 matcher->lookingAt(status); in API_Match_UTF8()
2056 result = matcher->group((UText *)NULL, group_len, status); in API_Match_UTF8()
2060 result = matcher->group(0, &destText, group_len, status); in API_Match_UTF8()
2069 result = matcher->group(0, NULL, length, status); in API_Match_UTF8()
2073 result = matcher->group(0, &destText, length, status); in API_Match_UTF8()
2081 result = matcher->group(1, NULL, length, status); in API_Match_UTF8()
2088 result = matcher->group(1, &destText, length, status); in API_Match_UTF8()
2097 result = matcher->group(2, NULL, length, status); in API_Match_UTF8()
2104 result = matcher->group(2, &destText, length, status); in API_Match_UTF8()
2113 result = matcher->group(3, NULL, length, status); in API_Match_UTF8()
2120 result = matcher->group(3, &destText, length, status); in API_Match_UTF8()
2130 REGEX_ASSERT_FAIL(matcher->group(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2132 REGEX_ASSERT_FAIL(matcher->group( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2134 matcher->reset(); in API_Match_UTF8()
2135 REGEX_ASSERT_FAIL(matcher->group( 0, status), U_REGEX_INVALID_STATE); in API_Match_UTF8()
2137 delete matcher; in API_Match_UTF8()
2163 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
2165 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2166 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2167 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2168 REGEX_ASSERT(matcher->start(status) == 6); in API_Match_UTF8()
2169 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2170 REGEX_ASSERT(matcher->start(status) == 12); in API_Match_UTF8()
2171 REGEX_ASSERT(matcher->find() == FALSE); in API_Match_UTF8()
2172 REGEX_ASSERT(matcher->find() == FALSE); in API_Match_UTF8()
2174 matcher->reset(); in API_Match_UTF8()
2175 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2176 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2178 REGEX_ASSERT(matcher->find(0, status)); in API_Match_UTF8()
2179 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2180 REGEX_ASSERT(matcher->find(1, status)); in API_Match_UTF8()
2181 REGEX_ASSERT(matcher->start(status) == 1); in API_Match_UTF8()
2182 REGEX_ASSERT(matcher->find(2, status)); in API_Match_UTF8()
2183 REGEX_ASSERT(matcher->start(status) == 6); in API_Match_UTF8()
2184 REGEX_ASSERT(matcher->find(12, status)); in API_Match_UTF8()
2185 REGEX_ASSERT(matcher->start(status) == 12); in API_Match_UTF8()
2186 REGEX_ASSERT(matcher->find(13, status) == FALSE); in API_Match_UTF8()
2187 REGEX_ASSERT(matcher->find(16, status) == FALSE); in API_Match_UTF8()
2188 REGEX_ASSERT(matcher->find(17, status) == FALSE); in API_Match_UTF8()
2189 REGEX_ASSERT_FAIL(matcher->start(status), U_REGEX_INVALID_STATE); in API_Match_UTF8()
2192 REGEX_ASSERT_FAIL(matcher->find(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2194 REGEX_ASSERT_FAIL(matcher->find(18, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match_UTF8()
2196 REGEX_ASSERT(matcher->groupCount() == 0); in API_Match_UTF8()
2198 delete matcher; in API_Match_UTF8()
2225 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8() local
2227 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2228 REGEX_ASSERT(matcher->start(status) == 0); in API_Match_UTF8()
2229 REGEX_ASSERT(matcher->start(1, status) == -1); in API_Match_UTF8()
2230 REGEX_ASSERT(matcher->start(2, status) == 1); in API_Match_UTF8()
2232 REGEX_ASSERT(matcher->find()); in API_Match_UTF8()
2233 REGEX_ASSERT(matcher->start(status) == 4); in API_Match_UTF8()
2234 REGEX_ASSERT(matcher->start(1, status) == 4); in API_Match_UTF8()
2235 REGEX_ASSERT(matcher->start(2, status) == -1); in API_Match_UTF8()
2238 delete matcher; in API_Match_UTF8()
2322 RegexMatcher *m = p->matcher(status); in API_Match_UTF8()
2461 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8() local
2476 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2481 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2486 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2493 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2503 matcher->reset(&dataText); in API_Replace_UTF8()
2505 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2509 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2514 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2519 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2528 matcher->reset(&dataText); in API_Replace_UTF8()
2530 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2534 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2539 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2543 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2552 matcher->reset(&dataText); in API_Replace_UTF8()
2555 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2560 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2565 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2571 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2581 matcher->reset(&dataText); in API_Replace_UTF8()
2585 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2590 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2595 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2600 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2615 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2697 matcher->reset(&dataText); in API_Replace_UTF8()
2699 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2705 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2715 matcher->reset(&dataText); in API_Replace_UTF8()
2724 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2729 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2796 delete matcher; in API_Replace_UTF8()
2890 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern_UTF8()
3118 RegexMatcher matcher(UnicodeString("(:)"), 0, status); in API_Pattern_UTF8() local
3124 int32_t numFields = matcher.split(textToSplit, splits, UPRV_LENGTHOF(splits), status); in API_Pattern_UTF8()
3383 RegexMatcher *matcher = NULL, *UTF8Matcher = NULL; in regex_find() local
3530 parseMatcher = parsePat->matcher(unEscapedInput, status); in regex_find()
3563 matcher = callerPattern->matcher(deTaggedInput, status); in regex_find()
3566 matcher->setTrace(TRUE); in regex_find()
3577 UTF8Matcher = &UTF8Pattern->matcher(status)->reset(&inputText); in regex_find()
3625 matcher->region(regionStart, regionEnd, status); in regex_find()
3633 matcher->useAnchoringBounds(FALSE); in regex_find()
3639 matcher->useTransparentBounds(TRUE); in regex_find()
3654 isMatch = matcher->matches(status); in regex_find()
3659 isMatch = matcher->lookingAt(status); in regex_find()
3664 isMatch = matcher->find(); in regex_find()
3670 matcher->setTrace(FALSE); in regex_find()
3706 for (i=0; i<=matcher->groupCount(); i++) { in regex_find()
3709 if (matcher->start(i, status) != expectedStart) { in regex_find()
3711 line, i, expectedStart, matcher->start(i, status)); in regex_find()
3723 if (matcher->end(i, status) != expectedEnd) { in regex_find()
3725 line, i, expectedEnd, matcher->end(i, status)); in regex_find()
3737 if ( matcher->groupCount()+1 < groupStarts.size()) { in regex_find()
3739 line, groupStarts.size()-1, matcher->groupCount()); in regex_find()
3749 matcher->requireEnd() == TRUE) { in regex_find()
3759 matcher->requireEnd() == FALSE) { in regex_find()
3769 matcher->hitEnd() == TRUE) { in regex_find()
3779 matcher->hitEnd() == FALSE) { in regex_find()
3799 delete matcher; in regex_find()
4062 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTests()
4077 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTests()
4094 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTests()
4098 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTests()
4209 RegexMatcher *testMat = testPat->matcher(matchString, status); in PerlTests()
4431 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTestsUTF8()
4446 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTestsUTF8()
4463 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTestsUTF8()
4467 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTestsUTF8()
4604 RegexMatcher *testMat = &testPat->matcher(status)->reset(&inputText); in PerlTestsUTF8()
4787 RegexMatcher matcher(pattern, s, flags, status); in Bug6149() local
4789 REGEX_ASSERT_FAIL(result=matcher.matches(status), U_REGEX_STACK_OVERFLOW); in Bug6149()
4832 RegexMatcher matcher("x", 0, status); in Callbacks() local
4834 matcher.getMatchCallback(returnedFn, returnedContext, status); in Callbacks()
4846 …RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)+\\2)+x"), 0, status); // A pattern that can run … in Callbacks() local
4848 matcher.setMatchCallback(testCallBackFn, &cbInfo, status); in Callbacks()
4850 matcher.getMatchCallback(returnedFn, returnedContext, status); in Callbacks()
4859 matcher.reset(s); in Callbacks()
4860 REGEX_ASSERT(matcher.matches(status)); in Callbacks()
4869 matcher.reset(s); in Callbacks()
4870 REGEX_ASSERT(matcher.matches(status)==FALSE); in Callbacks()
4878 matcher.reset(s); in Callbacks()
4879 REGEX_ASSERT(matcher.matches(status)==FALSE); in Callbacks()
4887 matcher.reset(s); in Callbacks()
4888 REGEX_ASSERT(matcher.find(status)==FALSE); in Callbacks()
4936 RegexMatcher matcher("x", 0, status); in FindProgressCallbacks() local
4938 matcher.getFindProgressCallback(returnedFn, returnedContext, status); in FindProgressCallbacks()
4950 RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)\\2)x"), 0, status); in FindProgressCallbacks() local
4952 matcher.setFindProgressCallback(testProgressCallBackFn, &cbInfo, status); in FindProgressCallbacks()
4954 matcher.getFindProgressCallback(returnedFn, returnedContext, status); in FindProgressCallbacks()
4963 matcher.reset(s); in FindProgressCallbacks()
4965 matcher.setTrace(TRUE); in FindProgressCallbacks()
4967 REGEX_ASSERT(matcher.find(0, status)); in FindProgressCallbacks()
4976 matcher.reset(s); in FindProgressCallbacks()
4977 REGEX_ASSERT(matcher.find(0, status)==FALSE); in FindProgressCallbacks()
4985 matcher.reset(s1); in FindProgressCallbacks()
4986 REGEX_ASSERT(matcher.find(0, status)==FALSE); in FindProgressCallbacks()
4994 matcher.reset(s2); in FindProgressCallbacks()
4995 REGEX_ASSERT(matcher.find(0, status)==FALSE); in FindProgressCallbacks()
5000 REGEX_ASSERT(matcher.find(cbInfo.lastIndex, status)); in FindProgressCallbacks()
5507 REMatcher = REPattern->matcher(s, status); in Bug7651()
5517 REMatcher = REPattern->matcher(s, status); in Bug7651()
5705 LocalPointer<RegexMatcher> matcher(compiledPat->matcher(status)); in TestCase11049() local
5707 matcher->reset(ut); in TestCase11049()
5708 UBool result = matcher->find(); in TestCase11049()
5723 matcher->reset(ut); in TestCase11049()
5724 result = matcher->find(); in TestCase11049()