Lines Matching refs:replText
2474 UText replText = UTEXT_INITIALIZER; in API_Replace_UTF8() local
2477 utext_openUTF8(&replText, str_yz, -1, &status); in API_Replace_UTF8()
2478 REGEX_VERBOSE_TEXT(&replText); in API_Replace_UTF8()
2479 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2484 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2489 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2496 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2508 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2512 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2517 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2522 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2533 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2537 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2542 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2546 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2557 utext_openUTF8(&replText, NULL, 0, &status); in API_Replace_UTF8()
2558 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2563 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2568 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2574 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2587 utext_openUTF8(&replText, str_xyz, -1, &status); in API_Replace_UTF8()
2588 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2593 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2598 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2603 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2622 utext_openUTF8(&replText, str_11, -1, &status); in API_Replace_UTF8()
2623 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2629 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2635 utext_openUTF8(&replText, str_v, -1, &status); in API_Replace_UTF8()
2636 REGEX_VERBOSE_TEXT(&replText); in API_Replace_UTF8()
2637 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2643 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2651 utext_openUTF8(&replText, str_byitselfnogroupnumber, -1, &status); in API_Replace_UTF8()
2652 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2658 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2670 utext_openUTF8(&replText, (char *)supplDigitChars, -1, &status); in API_Replace_UTF8()
2672 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2678 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2683 utext_openUTF8(&replText, str_badcapturegroupnumber5, -1, &status); in API_Replace_UTF8()
2684 …REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, NULL, status)), U_INDEX_OUTOFBOUNDS_… in API_Replace_UTF8()
2688 …REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, &destText, status)), U_INDEX_OUTOFBO… in API_Replace_UTF8()
2699 utext_openUTF8(&replText, str_u0043, -1, &status); in API_Replace_UTF8()
2702 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2708 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2717 utext_openUTF8(&replText, str_U00010000, -1, &status); in API_Replace_UTF8()
2727 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2732 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2748 utext_openUTF8(&replText, str_ooh, -1, &status); in API_Replace_UTF8()
2761 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2773 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2785 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2803 utext_close(&replText); in API_Replace_UTF8()
5130 UText replText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5138 regextst_openUTF8FromInvariant(&replText, "<$1>", -1, &status); in PreAllocatedUTextCAPI()
5148 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5156 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5163 regextst_openUTF8FromInvariant(&replText, "\\\\\\u0041$1\\U00000042\\$\\a", -1, &status); in PreAllocatedUTextCAPI()
5165 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5171 utext_close(&replText); in PreAllocatedUTextCAPI()
5181 UText replText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5187 regextst_openUTF8FromInvariant(&replText, "<$1>", -1, &status); in PreAllocatedUTextCAPI()
5195 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5203 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5209 utext_close(&replText); in PreAllocatedUTextCAPI()