• Home
  • Raw
  • Download

Lines Matching refs:replText

2448     UText replText = UTEXT_INITIALIZER;  in API_Replace_UTF8()  local
2451 utext_openUTF8(&replText, str_yz, -1, &status); in API_Replace_UTF8()
2452 REGEX_VERBOSE_TEXT(&replText); in API_Replace_UTF8()
2453 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2458 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2463 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2470 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2482 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2486 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2491 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2496 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2507 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2511 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2516 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2520 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2531 utext_openUTF8(&replText, NULL, 0, &status); in API_Replace_UTF8()
2532 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()
2548 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2561 utext_openUTF8(&replText, str_xyz, -1, &status); in API_Replace_UTF8()
2562 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2567 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2572 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2577 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2596 utext_openUTF8(&replText, str_11, -1, &status); in API_Replace_UTF8()
2597 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2603 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2609 utext_openUTF8(&replText, str_v, -1, &status); in API_Replace_UTF8()
2610 REGEX_VERBOSE_TEXT(&replText); in API_Replace_UTF8()
2611 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2617 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2625 utext_openUTF8(&replText, str_byitselfnogroupnumber, -1, &status); in API_Replace_UTF8()
2626 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2632 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2644 utext_openUTF8(&replText, (char *)supplDigitChars, -1, &status); in API_Replace_UTF8()
2646 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2652 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2657 utext_openUTF8(&replText, str_badcapturegroupnumber5, -1, &status); in API_Replace_UTF8()
2658 …REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, NULL, status)), U_INDEX_OUTOFBOUNDS_… in API_Replace_UTF8()
2662 …REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, &destText, status)), U_INDEX_OUTOFBO… in API_Replace_UTF8()
2673 utext_openUTF8(&replText, str_u0043, -1, &status); in API_Replace_UTF8()
2676 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2682 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2691 utext_openUTF8(&replText, str_U00010000, -1, &status); in API_Replace_UTF8()
2701 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2706 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2722 utext_openUTF8(&replText, str_ooh, -1, &status); in API_Replace_UTF8()
2735 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2747 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2759 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2777 utext_close(&replText); in API_Replace_UTF8()
5124 UText replText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5132 regextst_openUTF8FromInvariant(&replText, "<$1>", -1, &status); in PreAllocatedUTextCAPI()
5142 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5150 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5157 regextst_openUTF8FromInvariant(&replText, "\\\\\\u0041$1\\U00000042\\$\\a", -1, &status); in PreAllocatedUTextCAPI()
5159 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5165 utext_close(&replText); in PreAllocatedUTextCAPI()
5175 UText replText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5181 regextst_openUTF8FromInvariant(&replText, "<$1>", -1, &status); in PreAllocatedUTextCAPI()
5189 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5197 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5203 utext_close(&replText); in PreAllocatedUTextCAPI()