Lines Matching refs:bufferText
5024 UText bufferText = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
5026 utext_openUnicodeString(&bufferText, &buffer, &status); in PreAllocatedUTextCAPI()
5048 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5050 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5055 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5057 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5064 resultText = uregex_getUText(re, &bufferText, &status); in PreAllocatedUTextCAPI()
5066 REGEX_ASSERT(resultText == &bufferText); in PreAllocatedUTextCAPI()
5099 actual = uregex_groupUText(re, 0, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5101 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5108 actual = uregex_groupUText(re, 1, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5110 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5117 actual = uregex_groupUText(re, 2, &bufferText, &length, &status); in PreAllocatedUTextCAPI()
5119 REGEX_ASSERT(actual == &bufferText); in PreAllocatedUTextCAPI()
5133 utext_openUnicodeString(&bufferText, &buffer, &status); in PreAllocatedUTextCAPI()
5146 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5148 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5150 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5155 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5156 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5158 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5164 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5165 result = uregex_replaceFirstUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5167 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5194 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5195 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5197 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5202 utext_replace(&bufferText, 0, utext_nativeLength(&bufferText), NULL, 0, &status); in PreAllocatedUTextCAPI()
5203 result = uregex_replaceAllUText(re, &replText, &bufferText, &status); in PreAllocatedUTextCAPI()
5205 REGEX_ASSERT(result == &bufferText); in PreAllocatedUTextCAPI()
5218 utext_close(&bufferText); in PreAllocatedUTextCAPI()