Home
last modified time | relevance | path

Searched refs:MINUTE_IN_MILLIS (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/libcore/icu/
DRelativeDateTimeFormatterTest.java32 import static libcore.icu.RelativeDateTimeFormatter.MINUTE_IN_MILLIS;
52 MINUTE_IN_MILLIS, 0)); in test_getRelativeTimeSpanStringCTS()
55 MINUTE_IN_MILLIS, 0)); in test_getRelativeTimeSpanStringCTS()
58 getRelativeTimeSpanString(en_US, tz, 0, MINUTE_IN_MILLIS, MINUTE_IN_MILLIS, 0)); in test_getRelativeTimeSpanStringCTS()
60 getRelativeTimeSpanString(en_US, tz, MINUTE_IN_MILLIS, 0, MINUTE_IN_MILLIS, 0)); in test_getRelativeTimeSpanStringCTS()
63 getRelativeTimeSpanString(en_US, tz, baseTime - 42 * MINUTE_IN_MILLIS, baseTime, in test_getRelativeTimeSpanStringCTS()
64 MINUTE_IN_MILLIS, 0)); in test_getRelativeTimeSpanStringCTS()
66 getRelativeTimeSpanString(en_US, tz, baseTime + 42 * MINUTE_IN_MILLIS, baseTime, in test_getRelativeTimeSpanStringCTS()
67 MINUTE_IN_MILLIS, 0)); in test_getRelativeTimeSpanStringCTS()
72 MINUTE_IN_MILLIS, FORMAT_NUMERIC_DATE)); in test_getRelativeTimeSpanStringCTS()
[all …]
/libcore/ojluni/src/main/java/sun/util/calendar/
DAbstractCalendar.java53 static final int MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60; field in AbstractCalendar
54 static final int HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
251 int minutes = time / MINUTE_IN_MILLIS; in setTimeOfDay()
252 time %= MINUTE_IN_MILLIS; in setTimeOfDay()
/libcore/luni/src/main/java/libcore/icu/
DRelativeDateTimeFormatter.java44 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60; field in RelativeDateTimeFormatter
45 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
146 if (duration < MINUTE_IN_MILLIS && minResolution < MINUTE_IN_MILLIS) { in getRelativeTimeSpanString()
150 count = (int)(duration / MINUTE_IN_MILLIS); in getRelativeTimeSpanString()
/libcore/ojluni/annotations/hiddenapi/sun/util/calendar/
DAbstractCalendar.java131 static final int MINUTE_IN_MILLIS = 60000; // 0xea60 field in AbstractCalendar