Home | History | Annotate | Download | only in i18n

Lines Matching refs:timeScale

22 /* Constants generated by ICU4J com.ibm.icu.dev.tool.timescale.GenerateCTimeScaleData. */
38 utmscale_getTimeScaleValue(UDateTimeScale timeScale, UTimeScaleValue value, UErrorCode *status)
44 if (timeScale < UDTS_JAVA_TIME || UDTS_MAX_SCALE <= timeScale
51 return timeScaleTable[timeScale][value];
55 utmscale_fromInt64(int64_t otherTime, UDateTimeScale timeScale, UErrorCode *status)
63 if ((int32_t)timeScale < 0 || timeScale >= UDTS_MAX_SCALE) {
68 data = (const int64_t *)(&timeScaleTable[timeScale]);
79 utmscale_toInt64(int64_t universalTime, UDateTimeScale timeScale, UErrorCode *status)
87 if ((int32_t)timeScale < 0 || timeScale >= UDTS_MAX_SCALE) {
92 data = (const int64_t *)(&timeScaleTable[timeScale]);