Home | History | Annotate | Download | only in intltest

Lines Matching refs:errorCode

57         UErrorCode errorCode=U_ZERO_ERROR;
58 utf8Cnv=ucnv_open("UTF-8", &errorCode);
2208 UErrorCode errorCode=U_ZERO_ERROR;
2210 UnicodeSet idSet(idPattern, errorCode);
2211 if(U_FAILURE(errorCode)) {
2212 dataerrln("FAIL: unable to create UnicodeSet([:ID_Continue:]) - %s", u_errorName(errorCode));
2217 UnicodeSet wsSet(wsPattern, errorCode);
2218 if(U_FAILURE(errorCode)) {
2219 dataerrln("FAIL: unable to create UnicodeSet([:White_Space:]) - %s", u_errorName(errorCode));
2297 applyPattern(wsPattern, errorCode).
2298 applyPattern(wsPattern, USET_IGNORE_SPACE, NULL, errorCode).
2299 applyPattern(wsPattern, pos, USET_IGNORE_SPACE, NULL, errorCode).
2300 applyIntPropertyValue(UCHAR_CANONICAL_COMBINING_CLASS, 230, errorCode).
2301 applyPropertyAlias(UNICODE_STRING_SIMPLE("Assigned"), UnicodeString(), errorCode);
2352 UErrorCode errorCode=U_ZERO_ERROR;
2354 u_strToUTF8(t, capacity, &length8, s, length, &errorCode);
2355 if(U_SUCCESS(errorCode)) {
3269 UErrorCode errorCode=U_ZERO_ERROR;
3272 ucnv_fromUnicode(openUTF8Converter(), &t, tLimit, &s16, s16Limit, o, TRUE, &errorCode);
3273 if(U_FAILURE(errorCode)) {
3275 testName, (long)index, u_errorName(errorCode));
3681 UErrorCode errorCode=U_ZERO_ERROR;
3682 sets[SLOW]=new UnicodeSet(UnicodeString(s, -1, US_INV).unescape(), errorCode);
3683 if(U_FAILURE(errorCode)) {
3684 dataerrln("FAIL: Unable to create UnicodeSet(%s) - %s", s, u_errorName(errorCode));
3804 UErrorCode errorCode=U_ZERO_ERROR;
3806 UnicodeSet set(pattern16, errorCode);
3807 if(U_FAILURE(errorCode)) {
3808 errln("FAIL: Unable to create UnicodeSet(%s) - %s", pattern, u_errorName(errorCode));
3840 set.applyPattern(pattern16, errorCode);
3841 if(U_FAILURE(errorCode)) {
3842 errln("FAIL: Unable to create UnicodeSet(%s) - %s", pattern, u_errorName(errorCode));
3857 set.applyPattern(pattern16, errorCode).freeze();
3858 if(U_FAILURE(errorCode)) {
3859 errln("FAIL: Unable to create UnicodeSet(%s) - %s", pattern, u_errorName(errorCode));
3890 UErrorCode errorCode = U_ZERO_ERROR;
3893 const CollationCacheEntry *rootEntry = CollationRoot::getRootCacheEntry(errorCode);
3894 if(U_FAILURE(errorCode)) {
3895 dataerrln("FAIL: %s getting root cache entry", u_errorName(errorCode));
3901 checkSerializeRoundTrip(*unsafeBackwardSet, errorCode);
3915 errorCode = U_ZERO_ERROR;
3917 s2.applyPattern(pat, errorCode); // looks like invalid range [ 0x1e800, 0x2d, 0xdfff ]
3918 if(U_FAILURE(errorCode)) {
3919 errln("FAIL: surrogates to/from pattern - %s", u_errorName(errorCode));