Home | History | Annotate | Download | only in intltest

Lines Matching defs:errorCode

29     UErrorCode errorCode = U_ZERO_ERROR;
30 formatter->format(data, dataSize, actualResult, errorCode);
39 UErrorCode errorCode = U_ZERO_ERROR;
40 LocalPointer<ListFormatter> formatter(ListFormatter::createInstance(Locale(locale_string), errorCode));
41 if (U_FAILURE(errorCode)) {
42 dataerrln("ListFormatter::createInstance(Locale(\"%s\"), errorCode) failed in CheckFourCases: %s", locale_string, u_errorName(errorCode));
60 UErrorCode errorCode = U_ZERO_ERROR;
61 LocalPointer<ListFormatter> formatter(ListFormatter::createInstance(locale, errorCode));
62 if (U_FAILURE(errorCode)) {
63 dataerrln("ListFormatter::createInstance(\"%s\", errorCode) failed in RecordFourCases: %s", locale.getName(), u_errorName(errorCode));
67 formatter->format(input1, 1, results[0], errorCode);
69 formatter->format(input2, 2, results[1], errorCode);
71 formatter->format(input3, 3, results[2], errorCode);
73 formatter->format(input4, 4, results[3], errorCode);
74 if (U_FAILURE(errorCode)) {
75 errln("RecordFourCases failed: %s", u_errorName(errorCode));