Searched defs:MINUTE_IN_MILLIS (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/text/format/
H A DDateUtils.java52 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60; field in class:DateUtils
53 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
341 return getRelativeTimeSpanString(startTime, System.currentTimeMillis(), MINUTE_IN_MILLIS);
353 * past will be reported as "0 minutes ago" if this is set to MINUTE_IN_MILLIS. Pass one of
354 * 0, MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS, WEEK_IN_MILLIS
374 * this is set to MINUTE_IN_MILLIS. Pass one of 0,
375 * MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS,
391 if (duration < MINUTE_IN_MILLIS && minResolution < MINUTE_IN_MILLIS) {
407 count = duration / MINUTE_IN_MILLIS;
[all...]

Completed in 54 milliseconds