Home | History | Annotate | Download | only in cintltst

Lines Matching defs:errorCode

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