Lines Matching refs:UPRV_LENGTHOF

217         s=UnicodeString(FALSE, beforeLower, UPRV_LENGTHOF(beforeLower));  in TestCaseConversion()
219 if( s.length()!=UPRV_LENGTHOF(lowerRoot) || in TestCaseConversion()
222 … locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, lowerRoot, UPRV_LENGTHOF(lowerRoot)) + … in TestCaseConversion()
226 s=UnicodeString(FALSE, beforeLower, UPRV_LENGTHOF(beforeLower)); in TestCaseConversion()
228 if( s.length()!=UPRV_LENGTHOF(lowerTurkish) || in TestCaseConversion()
231 …cale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, lowerTurkish, UPRV_LENGTHOF(lowerTurkish))… in TestCaseConversion()
235 s=UnicodeString(FALSE, beforeUpper, UPRV_LENGTHOF(beforeUpper)); in TestCaseConversion()
237 if( s.length()!=UPRV_LENGTHOF(upperRoot) || in TestCaseConversion()
240 … locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, upperRoot, UPRV_LENGTHOF(upperRoot)) + … in TestCaseConversion()
244 s=UnicodeString(FALSE, beforeUpper, UPRV_LENGTHOF(beforeUpper)); in TestCaseConversion()
246 if( s.length()!=UPRV_LENGTHOF(upperTurkish) || in TestCaseConversion()
249 …cale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, upperTurkish, UPRV_LENGTHOF(upperTurkish))… in TestCaseConversion()
253 s=UnicodeString(FALSE, beforeMiniUpper, UPRV_LENGTHOF(beforeMiniUpper)); in TestCaseConversion()
255 if( s.length()!=UPRV_LENGTHOF(miniUpper) || in TestCaseConversion()
258 … locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, miniUpper, UPRV_LENGTHOF(miniUpper)) + … in TestCaseConversion()
569 … iter.adoptInstead(ubrk_openRules(rules, UPRV_LENGTHOF(rules), NULL, 0, &parseError, &status)); in TestCasing()
721 for (int32_t i = 0; i < UPRV_LENGTHOF(capacities); ++i) { in assertGreekUpper()
751 length = ucasemap_utf8ToUpper(csm.getAlias(), dest8, UPRV_LENGTHOF(dest8), in assertGreekUpper()
765 for (int32_t i = 0; i < UPRV_LENGTHOF(capacities); ++i) { in assertGreekUpper()
767 memset(dest8b, 0x5A, UPRV_LENGTHOF(dest8b)); in assertGreekUpper()
978 coarseExpectedChanges, UPRV_LENGTHOF(coarseExpectedChanges), TRUE, errorCode); in TestEdits()
981 coarseExpectedChanges, UPRV_LENGTHOF(coarseExpectedChanges), FALSE, errorCode); in TestEdits()
995 fineExpectedChanges, UPRV_LENGTHOF(fineExpectedChanges), TRUE, errorCode); in TestEdits()
998 fineExpectedChanges, UPRV_LENGTHOF(fineExpectedChanges), FALSE, errorCode); in TestEdits()
1258 u"IstanBul", 8, dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapWithEdits()
1268 lowerExpectedChanges, UPRV_LENGTHOF(lowerExpectedChanges), in TestCaseMapWithEdits()
1273 u"Πατάτα", 6, dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapWithEdits()
1285 upperExpectedChanges, UPRV_LENGTHOF(upperExpectedChanges), in TestCaseMapWithEdits()
1296 dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapWithEdits()
1305 titleExpectedChanges, UPRV_LENGTHOF(titleExpectedChanges), in TestCaseMapWithEdits()
1311 u"IßtanBul", 8, dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapWithEdits()
1329 foldExpectedChanges, UPRV_LENGTHOF(foldExpectedChanges), in TestCaseMapWithEdits()
1340 dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapUTF8WithEdits()
1351 lowerExpectedChanges, UPRV_LENGTHOF(lowerExpectedChanges), in TestCaseMapUTF8WithEdits()
1357 dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapUTF8WithEdits()
1370 upperExpectedChanges, UPRV_LENGTHOF(upperExpectedChanges), in TestCaseMapUTF8WithEdits()
1380 dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapUTF8WithEdits()
1390 titleExpectedChanges, UPRV_LENGTHOF(titleExpectedChanges), in TestCaseMapUTF8WithEdits()
1398 dest, UPRV_LENGTHOF(dest), &edits, errorCode); in TestCaseMapUTF8WithEdits()
1417 foldExpectedChanges, UPRV_LENGTHOF(foldExpectedChanges), in TestCaseMapUTF8WithEdits()
1430 … u"IstanBul", 8, dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1434 u"Πατάτα", 6, dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1443 dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1448 u"IßtanBul", 8, dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1454 u"IstanBul", 8, dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1458 u"Πατάτα", 6, dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1466 dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1471 u"IßtanBul", 8, dest, UPRV_LENGTHOF(dest), nullptr, errorCode); in TestCaseMapToString()
1560 int32_t length = u_strToTitle(s, UPRV_LENGTHOF(s), s, -1, nullptr, "", errorCode); in TestInPlaceTitle()