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

/frameworks/base/core/java/android/text/format/
H A DDateUtils.java147 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60; field in class:DateUtils
148 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
409 return getRelativeTimeSpanString(startTime, System.currentTimeMillis(), MINUTE_IN_MILLIS);
421 * past will be reported as "0 minutes ago" if this is set to MINUTE_IN_MILLIS. Pass one of
422 * 0, MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS, WEEK_IN_MILLIS
442 * this is set to MINUTE_IN_MILLIS. Pass one of 0,
443 * MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS,
459 if (duration < MINUTE_IN_MILLIS && minResolution < MINUTE_IN_MILLIS) {
475 count = duration / MINUTE_IN_MILLIS;
[all...]

Completed in 965 milliseconds