Searched refs:destText (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 2055 UText destText = UTEXT_INITIALIZER; in API_Match_UTF8() local 2056 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2065 result = matcher->group(0, &destText, group_len, status); in API_Match_UTF8() 2067 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2070 utext_close(&destText); in API_Match_UTF8() 2071 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2078 result = matcher->group(0, &destText, length, status); in API_Match_UTF8() 2080 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2093 result = matcher->group(1, &destText, length, status); in API_Match_UTF8() 2095 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()
|