Home | History | Annotate | Download | only in intltest

Lines Matching defs:matcher2

1395     RegexMatcher *matcher2 = pat2->matcher(d5, status);
1397 dest = matcher2->replaceFirst("$1$1", status);
1401 dest = matcher2->replaceFirst(UNICODE_STRING_SIMPLE("The value of \\$1 is $1."), status);
1405 dest = matcher2->replaceFirst("$ by itself, no group number $$$", status);
1411 dest = matcher2->replaceFirst(replacement, status);
1415 REGEX_ASSERT_FAIL(matcher2->replaceFirst("bad capture group number $5...",status), U_INDEX_OUTOFBOUNDS_ERROR);
1484 delete matcher2;
2555 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText);
2560 result = matcher2->replaceFirst(&replText, NULL, status);
2566 result = matcher2->replaceFirst(&replText, &destText, status);
2574 result = matcher2->replaceFirst(&replText, NULL, status);
2580 result = matcher2->replaceFirst(&replText, &destText, status);
2587 result = matcher2->replaceFirst(&replText, NULL, status);
2593 result = matcher2->replaceFirst(&replText, &destText, status);
2607 result = matcher2->replaceFirst(&replText, NULL, status);
2613 result = matcher2->replaceFirst(&replText, &destText, status);
2619 REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, NULL, status)), U_INDEX_OUTOFBOUNDS_ERROR);
2623 REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, &destText, status)), U_INDEX_OUTOFBOUNDS_ERROR);
2732 delete matcher2;