Lines Matching refs:UText

25 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
167 UText *ut = NULL; in TestString()
299 void UTextTest::TestCMR(const UnicodeString &us, UText *ut, int cpCount, m *nativeMap, m *u16Map) { in TestCMR()
406 void UTextTest::TestCopyMove(const UnicodeString &us, UText *ut, UBool move, in TestCopyMove()
411 UText *targetUT = NULL; in TestCopyMove()
481 UText *ut, // UnicodeText object under test. in TestReplace()
489 UText *targetUT = NULL; in TestReplace()
553 void UTextTest::TestAccess(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccess()
560 UText *shallowClone = utext_clone(NULL, ut, FALSE /*deep*/, FALSE /*readOnly*/, &status); in TestAccess()
571 UText *deepClone = utext_clone(NULL, shallowClone, TRUE, FALSE, &status); in TestAccess()
586 void UTextTest::TestAccessNoClone(const UnicodeString &us, UText *ut, int cpCount, m *cpMap) { in TestAccessNoClone()
848 UText ut; in ErrorTest()
849 memset(&ut, 0, sizeof(UText)); in ErrorTest()
857 UText ut = UTEXT_INITIALIZER; in ErrorTest()
859 UText *ut2 = utext_openUnicodeString(&ut, &s, &status); in ErrorTest()
863 UText *ut3 = utext_close(&ut); in ErrorTest()
866 UText *ut4 = utext_close(&ut); in ErrorTest()
878 UText ut = UTEXT_INITIALIZER; in ErrorTest()
879 UText *utp; in ErrorTest()
912 UText ut = UTEXT_INITIALIZER; in ErrorTest()
936 UText *ut = NULL; in ErrorTest()
975 UText *uta = utext_openUnicodeString(NULL, &sa, &status); in ErrorTest()
981 UText *utb = utext_openUChars(NULL, sb, -1, &status); in ErrorTest()
1009 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); in ErrorTest()
1082 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); in ErrorTest()
1150 UText *ut = utext_openReplaceable(NULL, &u16str, &status); in ErrorTest()
1216 UText *ut = NULL; in FreezeTest()
1217 UText *ut2 = NULL; in FreezeTest()
1306 fragTextAccess(UText *ut, int64_t index, UBool forward) { in fragTextAccess()
1349 UText *
1350 cloneFragmentedUnicodeString(UText *dest, const UText *src, UBool deep, UErrorCode *status) { in cloneFragmentedUnicodeString()
1366 UText *
1367 openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) { in openFragmentedUnicodeString()
1402 UText ut1 = UTEXT_INITIALIZER; in Ticket5560()
1403 UText ut2 = UTEXT_INITIALIZER; in Ticket5560()
1436 UText *ut = utext_openUChars(NULL, s, -1, &status); in Ticket6847()
1465 UText *utf8Text = utext_openUTF8(NULL, utf8_string, -1, &status); in Ticket10562()
1467 UText *deepClone = utext_clone(NULL, utf8Text, TRUE, FALSE, &status); in Ticket10562()
1469 UText *shallowClone = utext_clone(NULL, deepClone, FALSE, FALSE, &status); in Ticket10562()
1477 UText *usText = utext_openUnicodeString(NULL, &usString, &status); in Ticket10562()
1479 UText *usDeepClone = utext_clone(NULL, usText, TRUE, FALSE, &status); in Ticket10562()
1481 UText *usShallowClone = utext_clone(NULL, usDeepClone, FALSE, FALSE, &status); in Ticket10562()
1494 UText *ut = utext_openConstUnicodeString(NULL, &s, &status); in Ticket10983()
1498 UText *cloned = utext_clone(NULL, ut, TRUE, TRUE, &status); in Ticket10983()