Home
last modified time | relevance | path

Searched refs:getDisplayedDatetime (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Calendar/tests/src/com/android/calendar/
H A DUtilsTests.java231 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_differentYear()
238 result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_differentYear()
248 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_sameYear()
258 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_today()
268 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_todayMidnight()
278 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_tomorrow()
288 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_yesterday()
298 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, DEFAULT_TIMEZONE, in testGetDisplayedDatetime_multiDay()
342 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, localTz, false, in testGetDisplayedDatetime_differentTimezone()
355 String result = Utils.getDisplayedDatetime(start, end, NOW_TIME, localTz, true, in testGetDisplayedDatetime_allDayDiffTimezone()
[all …]
/aosp12/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java692 String displayedDatetime = Utils.getDisplayedDatetime(mStartMillis, mEndMillis, in updateEvent()
H A DUtils.java1314 public static String getDisplayedDatetime(long startMillis, long endMillis, long currentMillis, in getDisplayedDatetime() method in Utils