HomeSort by relevance Sort by last modified time
    Searched defs:MINUTE_IN_MILLIS (Results 1 - 25 of 50) sorted by null

1 2

  /libcore/luni/src/main/java/libcore/icu/
RelativeDateTimeFormatter.java 41 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60;
42 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
142 if (duration < MINUTE_IN_MILLIS && minResolution < MINUTE_IN_MILLIS) {
146 count = (int)(duration / MINUTE_IN_MILLIS);
  /libcore/ojluni/src/main/java/sun/util/calendar/
AbstractCalendar.java 53 static final int MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60;
54 static final int HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
249 int minutes = time / MINUTE_IN_MILLIS;
250 time %= MINUTE_IN_MILLIS;
  /packages/apps/Messaging/src/com/android/messaging/util/
Dates.java 36 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60;
37 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
67 if (now - time < DateUtils.MINUTE_IN_MILLIS) {
77 return DateUtils.getRelativeTimeSpanString(time, now, DateUtils.MINUTE_IN_MILLIS,
132 if (!minPeriodToday && timeDiff < DateUtils.MINUTE_IN_MILLIS) {
155 final long count = (timeDiff / MINUTE_IN_MILLIS);
248 count = duration / MINUTE_IN_MILLIS;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 22 private static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60;
23 private static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTime.java 31 private static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60;
32 private static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
  /frameworks/base/core/java/android/text/format/
DateUtils.java 53 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60;
54 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
254 * The minimum timespan to report is set to {@link #MINUTE_IN_MILLIS}.
260 return getRelativeTimeSpanString(startTime, System.currentTimeMillis(), MINUTE_IN_MILLIS);
272 * past will be reported as "0 minutes ago" if this is set to MINUTE_IN_MILLIS. Pass one of
273 * 0, MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS, WEEK_IN_MILLIS
293 * this is set to MINUTE_IN_MILLIS. Pass one of 0,
294 * MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS,
322 * {@link #MINUTE_IN_MILLIS}.
400 } else if (millis >= MINUTE_IN_MILLIS) {
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
AndroidKeyStoreTest.java     [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 

Completed in 258 milliseconds

1 2