Lines Matching refs:UText
30 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
166 UText *ut = NULL; in TestString()
298 void UTextTest::TestCMR(const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *u16Map) { in TestCMR()
405 void UTextTest::TestCopyMove(const UnicodeString &us, UText *ut, UBool move, in TestCopyMove()
410 UText *targetUT = NULL; in TestCopyMove()
480 UText *ut, // UnicodeText object under test. in TestReplace()
488 UText *targetUT = NULL; in TestReplace()
552 void UTextTest::TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccess()
559 UText *shallowClone = utext_clone(NULL, ut, FALSE /*deep*/, FALSE /*readOnly*/, &status); in TestAccess()
570 UText *deepClone = utext_clone(NULL, shallowClone, TRUE, FALSE, &status); in TestAccess()
585 void UTextTest::TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccessNoClone()
847 UText ut; in ErrorTest()
848 memset(&ut, 0, sizeof(UText)); in ErrorTest()
856 UText ut = UTEXT_INITIALIZER; in ErrorTest()
858 UText *ut2 = utext_openUnicodeString(&ut, &s, &status); in ErrorTest()
862 UText *ut3 = utext_close(&ut); in ErrorTest()
865 UText *ut4 = utext_close(&ut); in ErrorTest()
877 UText ut = UTEXT_INITIALIZER; in ErrorTest()
878 UText *utp; in ErrorTest()
911 UText ut = UTEXT_INITIALIZER; in ErrorTest()
935 UText *ut = NULL; in ErrorTest()
978 UText *uta = utext_openUnicodeString(NULL, &sa, &status); in ErrorTest()
984 UText *utb = utext_openUChars(NULL, sb, -1, &status); in ErrorTest()
1012 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); in ErrorTest()
1085 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); in ErrorTest()
1153 UText *ut = utext_openReplaceable(NULL, &u16str, &status); in ErrorTest()
1219 UText *ut = NULL; in FreezeTest()
1220 UText *ut2 = NULL; in FreezeTest()
1309 fragTextAccess(UText *ut, int64_t index, UBool forward) { in fragTextAccess()
1352 UText *
1353 cloneFragmentedUnicodeString(UText *dest, const UText *src, UBool deep, UErrorCode *status) { in cloneFragmentedUnicodeString()
1369 UText *
1370 openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) { in openFragmentedUnicodeString()
1405 UText ut1 = UTEXT_INITIALIZER; in Ticket5560()
1406 UText ut2 = UTEXT_INITIALIZER; in Ticket5560()
1439 UText *ut = utext_openUChars(NULL, s, -1, &status); in Ticket6847()
1468 UText *utf8Text = utext_openUTF8(NULL, utf8_string, -1, &status); in Ticket10562()
1470 UText *deepClone = utext_clone(NULL, utf8Text, TRUE, FALSE, &status); in Ticket10562()
1472 UText *shallowClone = utext_clone(NULL, deepClone, FALSE, FALSE, &status); in Ticket10562()
1480 UText *usText = utext_openUnicodeString(NULL, &usString, &status); in Ticket10562()
1482 UText *usDeepClone = utext_clone(NULL, usText, TRUE, FALSE, &status); in Ticket10562()
1484 UText *usShallowClone = utext_clone(NULL, usDeepClone, FALSE, FALSE, &status); in Ticket10562()
1497 UText *ut = utext_openConstUnicodeString(NULL, &s, &status); in Ticket10983()
1501 UText *cloned = utext_clone(NULL, ut, TRUE, TRUE, &status); in Ticket10983()
1528 UText ut = UTEXT_INITIALIZER; in Ticket12130()