Lines Matching refs:UText
29 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
173 UText *ut = NULL; in TestString()
305 void UTextTest::TestCMR(const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *u16Map) { in TestCMR()
412 void UTextTest::TestCopyMove(const UnicodeString &us, UText *ut, UBool move, in TestCopyMove()
417 UText *targetUT = NULL; in TestCopyMove()
487 UText *ut, // UnicodeText object under test. in TestReplace()
495 UText *targetUT = NULL; in TestReplace()
559 void UTextTest::TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccess()
566 UText *shallowClone = utext_clone(NULL, ut, FALSE /*deep*/, FALSE /*readOnly*/, &status); in TestAccess()
577 UText *deepClone = utext_clone(NULL, shallowClone, TRUE, FALSE, &status); in TestAccess()
592 void UTextTest::TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccessNoClone()
854 UText ut; in ErrorTest()
855 memset(&ut, 0, sizeof(UText)); in ErrorTest()
863 UText ut = UTEXT_INITIALIZER; in ErrorTest()
865 UText *ut2 = utext_openUnicodeString(&ut, &s, &status); in ErrorTest()
869 UText *ut3 = utext_close(&ut); in ErrorTest()
872 UText *ut4 = utext_close(&ut); in ErrorTest()
884 UText ut = UTEXT_INITIALIZER; in ErrorTest()
885 UText *utp; in ErrorTest()
918 UText ut = UTEXT_INITIALIZER; in ErrorTest()
942 UText *ut = NULL; in ErrorTest()
981 UText *uta = utext_openUnicodeString(NULL, &sa, &status); in ErrorTest()
987 UText *utb = utext_openUChars(NULL, sb, -1, &status); in ErrorTest()
1015 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); in ErrorTest()
1088 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); in ErrorTest()
1156 UText *ut = utext_openReplaceable(NULL, &u16str, &status); in ErrorTest()
1222 UText *ut = NULL; in FreezeTest()
1223 UText *ut2 = NULL; in FreezeTest()
1312 fragTextAccess(UText *ut, int64_t index, UBool forward) { in fragTextAccess()
1355 UText *
1356 cloneFragmentedUnicodeString(UText *dest, const UText *src, UBool deep, UErrorCode *status) { in cloneFragmentedUnicodeString()
1372 UText *
1373 openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) { in openFragmentedUnicodeString()
1408 UText ut1 = UTEXT_INITIALIZER; in Ticket5560()
1409 UText ut2 = UTEXT_INITIALIZER; in Ticket5560()
1442 UText *ut = utext_openUChars(NULL, s, -1, &status); in Ticket6847()
1471 UText *utf8Text = utext_openUTF8(NULL, utf8_string, -1, &status); in Ticket10562()
1473 UText *deepClone = utext_clone(NULL, utf8Text, TRUE, FALSE, &status); in Ticket10562()
1475 UText *shallowClone = utext_clone(NULL, deepClone, FALSE, FALSE, &status); in Ticket10562()
1483 UText *usText = utext_openUnicodeString(NULL, &usString, &status); in Ticket10562()
1485 UText *usDeepClone = utext_clone(NULL, usText, TRUE, FALSE, &status); in Ticket10562()
1487 UText *usShallowClone = utext_clone(NULL, usDeepClone, FALSE, FALSE, &status); in Ticket10562()
1500 UText *ut = utext_openConstUnicodeString(NULL, &s, &status); in Ticket10983()
1504 UText *cloned = utext_clone(NULL, ut, TRUE, TRUE, &status); in Ticket10983()
1531 UText ut = UTEXT_INITIALIZER; in Ticket12130()