Searched refs:destText (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 1994 UText destText = UTEXT_INITIALIZER; in API_Match_UTF8() local 1995 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2004 result = matcher->group(0, &destText, group_len, status); in API_Match_UTF8() 2006 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2009 utext_close(&destText); in API_Match_UTF8() 2010 utext_openUnicodeString(&destText, &dest, &status); in API_Match_UTF8() 2017 result = matcher->group(0, &destText, length, status); in API_Match_UTF8() 2019 REGEX_ASSERT(result == &destText); in API_Match_UTF8() 2032 result = matcher->group(1, &destText, length, status); in API_Match_UTF8() 2034 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()
|