Searched refs:destText (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 2050 UText destText = UTEXT_INITIALIZER; in API_Match_UTF8() local 2051 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2060 result = matcher->group(0, &destText, group_len, status); in API_Match_UTF8() 2062 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2065 utext_close(&destText); in API_Match_UTF8() 2066 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2073 result = matcher->group(0, &destText, length, status); in API_Match_UTF8() 2075 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2088 result = matcher->group(1, &destText, length, status); in API_Match_UTF8() 2090 REGEX_ASSERT(result == &destText); in API_Match_UTF8() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | rematch.cpp | 2040 UText **destText = (UText **)uprv_malloc(sizeof(UText*)*destCapacity); in split() local 2041 if (destText == NULL) { in split() 2047 destText[i] = utext_openUnicodeString(NULL, &dest[i], &status); in split() 2050 int32_t fieldCount = split(&inputText, destText, destCapacity, status); in split() 2053 utext_close(destText[i]); in split() 2056 uprv_free(destText); in split()
|