Searched refs:MINUTE_IN_MILLIS (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/test/java/libcore/libcore/icu/ |
D | RelativeDateTimeFormatterTest.java | 32 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/ |
D | AbstractCalendar.java | 53 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/ |
D | RelativeDateTimeFormatter.java | 44 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/ |
D | AbstractCalendar.java | 131 static final int MINUTE_IN_MILLIS = 60000; // 0xea60 field in AbstractCalendar
|