Home | History | Annotate | Download | only in cintltst

Lines Matching refs:errorCode

450     UErrorCode errorCode;
456 errorCode = U_ZERO_ERROR;
457 cal = ucal_open(utc, -1, "", UCAL_GREGORIAN, &errorCode);
458 ucal_setGregorianChange(cal, -1000000 * (dayMillis * (UDate)1), &errorCode);
459 if(U_FAILURE(errorCode)) {
460 log_data_err("ucal_open(UTC/proleptic Gregorian) failed: %s - (Are you missing data?)\n", u_errorName(errorCode));
467 millis = utmscale_toInt64(dt->ticks, UDTS_ICU4C_TIME, &errorCode);
469 ucal_setDate(cal, dt->year, dt->month - 1, dt->day, &errorCode); /* Java & ICU use January = month 0. */
470 icuDate = ucal_getMillis(cal, &errorCode);
478 ticks = utmscale_fromInt64((int64_t)icuDate, UDTS_ICU4C_TIME, &errorCode);