Lines Matching refs:UText
30 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
170 UText *ut = NULL; in TestString()
302 void UTextTest::TestCMR(const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *u16Map) { in TestCMR()
409 void UTextTest::TestCopyMove(const UnicodeString &us, UText *ut, UBool move, in TestCopyMove()
414 UText *targetUT = NULL; in TestCopyMove()
484 UText *ut, // UnicodeText object under test. in TestReplace()
492 UText *targetUT = NULL; in TestReplace()
556 void UTextTest::TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccess()
563 UText *shallowClone = utext_clone(NULL, ut, FALSE /*deep*/, FALSE /*readOnly*/, &status); in TestAccess()
574 UText *deepClone = utext_clone(NULL, shallowClone, TRUE, FALSE, &status); in TestAccess()
589 void UTextTest::TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccessNoClone()
851 UText ut; in ErrorTest()
852 memset(&ut, 0, sizeof(UText)); in ErrorTest()
860 UText ut = UTEXT_INITIALIZER; in ErrorTest()
862 UText *ut2 = utext_openUnicodeString(&ut, &s, &status); in ErrorTest()
866 UText *ut3 = utext_close(&ut); in ErrorTest()
869 UText *ut4 = utext_close(&ut); in ErrorTest()
881 UText ut = UTEXT_INITIALIZER; in ErrorTest()
882 UText *utp; in ErrorTest()
915 UText ut = UTEXT_INITIALIZER; in ErrorTest()
939 UText *ut = NULL; in ErrorTest()
982 UText *uta = utext_openUnicodeString(NULL, &sa, &status); in ErrorTest()
988 UText *utb = utext_openUChars(NULL, sb, -1, &status); in ErrorTest()
1016 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); in ErrorTest()
1089 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); in ErrorTest()
1157 UText *ut = utext_openReplaceable(NULL, &u16str, &status); in ErrorTest()
1223 UText *ut = NULL; in FreezeTest()
1224 UText *ut2 = NULL; in FreezeTest()
1313 fragTextAccess(UText *ut, int64_t index, UBool forward) { in fragTextAccess()
1356 UText *
1357 cloneFragmentedUnicodeString(UText *dest, const UText *src, UBool deep, UErrorCode *status) { in cloneFragmentedUnicodeString()
1373 UText *
1374 openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) { in openFragmentedUnicodeString()
1409 UText ut1 = UTEXT_INITIALIZER; in Ticket5560()
1410 UText ut2 = UTEXT_INITIALIZER; in Ticket5560()
1443 UText *ut = utext_openUChars(NULL, s, -1, &status); in Ticket6847()
1472 UText *utf8Text = utext_openUTF8(NULL, utf8_string, -1, &status); in Ticket10562()
1474 UText *deepClone = utext_clone(NULL, utf8Text, TRUE, FALSE, &status); in Ticket10562()
1476 UText *shallowClone = utext_clone(NULL, deepClone, FALSE, FALSE, &status); in Ticket10562()
1484 UText *usText = utext_openUnicodeString(NULL, &usString, &status); in Ticket10562()
1486 UText *usDeepClone = utext_clone(NULL, usText, TRUE, FALSE, &status); in Ticket10562()
1488 UText *usShallowClone = utext_clone(NULL, usDeepClone, FALSE, FALSE, &status); in Ticket10562()
1501 UText *ut = utext_openConstUnicodeString(NULL, &s, &status); in Ticket10983()
1505 UText *cloned = utext_clone(NULL, ut, TRUE, TRUE, &status); in Ticket10983()
1532 UText ut = UTEXT_INITIALIZER; in Ticket12130()