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

/frameworks/base/core/java/android/text/format/
H A DDateUtils.java602 * today this function returns "Today", if the day was a week ago it returns "7 days ago", and
607 * @param today the current time in UTC milliseconds
610 private static final String getRelativeDayString(Resources r, long day, long today) { argument
614 currentTime.set(today);
617 int currentDay = Time.getJulianDay(today, currentTime.gmtoff);
620 boolean past = (today > day);
629 return r.getString(com.android.internal.R.string.today);
831 * @return true if the supplied when is today else false
1610 * <li>"millis=0:10 today" will be displayed as "0:10"</li>

Completed in 50 milliseconds