Home | History | Annotate | Download | only in intltest

Lines Matching defs:matcher2

1299     RegexMatcher *matcher2 = pat2->matcher(d5, status);
1301 dest = matcher2->replaceFirst("$1$1", status);
1305 dest = matcher2->replaceFirst(UNICODE_STRING_SIMPLE("The value of \\$1 is $1."), status);
1309 dest = matcher2->replaceFirst("$ by itself, no group number $$$", status);
1315 dest = matcher2->replaceFirst(replacement, status);
1319 REGEX_ASSERT_FAIL(matcher2->replaceFirst("bad capture group number $5...",status), U_INDEX_OUTOFBOUNDS_ERROR);
1388 delete matcher2;
2424 RegexMatcher *matcher2 = pat2->matcher(&dataText, RegexPattern::PATTERN_IS_UTEXT, status);
2429 result = matcher2->replaceFirst(&replText, NULL, status);
2435 result = matcher2->replaceFirst(&replText, &destText, status);
2441 result = matcher2->replaceFirst(&replText, NULL, status);
2447 result = matcher2->replaceFirst(&replText, &destText, status);
2454 result = matcher2->replaceFirst(&replText, NULL, status);
2460 result = matcher2->replaceFirst(&replText, &destText, status);
2474 result = matcher2->replaceFirst(&replText, NULL, status);
2480 result = matcher2->replaceFirst(&replText, &destText, status);
2486 REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, NULL, status)), U_INDEX_OUTOFBOUNDS_ERROR);
2490 REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, &destText, status)), U_INDEX_OUTOFBOUNDS_ERROR);
2599 delete matcher2;