• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:replText

2415     UText replText = UTEXT_INITIALIZER;  in API_Replace_UTF8()  local
2418 utext_openUTF8(&replText, str_yz, -1, &status); in API_Replace_UTF8()
2419 REGEX_VERBOSE_TEXT(&replText); in API_Replace_UTF8()
2420 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2425 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2430 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2437 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2449 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2453 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2458 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2463 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2474 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2478 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2483 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2487 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2498 utext_openUTF8(&replText, NULL, 0, &status); in API_Replace_UTF8()
2499 result = matcher->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2504 result = matcher->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2509 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2515 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2528 utext_openUTF8(&replText, str_xyz, -1, &status); in API_Replace_UTF8()
2529 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()
2544 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2563 utext_openUTF8(&replText, str_11, -1, &status); in API_Replace_UTF8()
2564 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2570 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2576 utext_openUTF8(&replText, str_v, -1, &status); in API_Replace_UTF8()
2577 REGEX_VERBOSE_TEXT(&replText); in API_Replace_UTF8()
2578 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2584 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2592 utext_openUTF8(&replText, str_byitselfnogroupnumber, -1, &status); in API_Replace_UTF8()
2593 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2599 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2611 utext_openUTF8(&replText, (char *)supplDigitChars, -1, &status); in API_Replace_UTF8()
2613 result = matcher2->replaceFirst(&replText, NULL, status); in API_Replace_UTF8()
2619 result = matcher2->replaceFirst(&replText, &destText, status); in API_Replace_UTF8()
2624 utext_openUTF8(&replText, str_badcapturegroupnumber5, -1, &status); in API_Replace_UTF8()
2625 …REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, NULL, status)), U_INDEX_OUTOFBOUNDS_… in API_Replace_UTF8()
2629 …REGEX_ASSERT_FAIL((result = matcher2->replaceFirst(&replText, &destText, status)), U_INDEX_OUTOFBO… in API_Replace_UTF8()
2640 utext_openUTF8(&replText, str_u0043, -1, &status); in API_Replace_UTF8()
2643 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2649 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2658 utext_openUTF8(&replText, str_U00010000, -1, &status); in API_Replace_UTF8()
2668 result = matcher->replaceAll(&replText, NULL, status); in API_Replace_UTF8()
2673 result = matcher->replaceAll(&replText, &destText, status); in API_Replace_UTF8()
2689 utext_openUTF8(&replText, str_ooh, -1, &status); in API_Replace_UTF8()
2702 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2714 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2726 m.appendReplacement(&resultText, &replText, status); in API_Replace_UTF8()
2744 utext_close(&replText); in API_Replace_UTF8()
5078 UText replText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5086 regextst_openUTF8FromInvariant(&replText, "<$1>", -1, &status); in PreAllocatedUTextCAPI()
5096 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5104 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5111 regextst_openUTF8FromInvariant(&replText, "\\\\\\u0041$1\\U00000042\\$\\a", -1, &status); in PreAllocatedUTextCAPI()
5113 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5119 utext_close(&replText); in PreAllocatedUTextCAPI()
5129 UText replText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5135 regextst_openUTF8FromInvariant(&replText, "<$1>", -1, &status); in PreAllocatedUTextCAPI()
5143 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5151 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5157 utext_close(&replText); in PreAllocatedUTextCAPI()