Lines Matching refs:bufferText
5018 UText bufferText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5020 utext_openUnicodeString(&bufferText, &buffer, &status); in PreAllocatedUTextCAPI()
5042 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5044 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5049 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5051 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5058 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5060 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5093 actual = uregex_groupUText(re, 0, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5095 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5102 actual = uregex_groupUText(re, 1, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5104 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5111 actual = uregex_groupUText(re, 2, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5113 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5127 utext_openUnicodeString(&bufferText, &buffer, &status); in PreAllocatedUTextCAPI()
5140 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5142 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5144 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5149 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5150 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5152 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5158 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5159 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5161 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5188 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5189 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5191 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5196 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5197 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5199 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5212 utext_close(&bufferText); in PreAllocatedUTextCAPI()