Searched refs:destText (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 2027 UText destText = UTEXT_INITIALIZER; in API_Match_UTF8() local 2028 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2037 result = matcher->group(0, &destText, group_len, status); in API_Match_UTF8() 2039 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2042 utext_close(&destText); in API_Match_UTF8() 2043 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2050 result = matcher->group(0, &destText, length, status); in API_Match_UTF8() 2052 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2065 result = matcher->group(1, &destText, length, status); in API_Match_UTF8() 2067 REGEX_ASSERT(result == &destText); in API_Match_UTF8() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | rematch.cpp | 2045 UText **destText = (UText **)uprv_malloc(sizeof(UText*)*destCapacity); in split() local 2046 if (destText == NULL) { in split() 2052 destText[i] = utext_openUnicodeString(NULL, &dest[i], &status); in split() 2055 int32_t fieldCount = split(&inputText, destText, destCapacity, status); in split() 2058 utext_close(destText[i]); in split() 2061 uprv_free(destText); in split()
|