Lines Matching refs:bufferText
4972 UText bufferText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
4974 utext_openUnicodeString(&bufferText, &buffer, &status); in PreAllocatedUTextCAPI()
4996 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
4998 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5003 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5005 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5012 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5014 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5047 actual = uregex_groupUText(re, 0, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5049 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5056 actual = uregex_groupUText(re, 1, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5058 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5065 actual = uregex_groupUText(re, 2, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5067 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5081 utext_openUnicodeString(&bufferText, &buffer, &status); in PreAllocatedUTextCAPI()
5094 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5096 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5098 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5103 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5104 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5106 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5112 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5113 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5115 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5142 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5143 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5145 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5150 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5151 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5153 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5166 utext_close(&bufferText); in PreAllocatedUTextCAPI()