Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/service/notification/
DScheduleCalendar.java109 final long tomorrow = addDays(time, 1); in getNextTime() local
110 return adjust ? getClosestActualTime(tomorrow, hr, min) : getTime(tomorrow, hr, min); in getNextTime()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DScheduleCalendarTest.java185 Calendar tomorrow = getDaylightSavingsForwardDay(); in testGetNextChangeTime_startTomorrowInDaylight() local
186 tomorrow.add(Calendar.DATE, 1); in testGetNextChangeTime_startTomorrowInDaylight()
188 tomorrow.get(Calendar.DAY_OF_WEEK)}; in testGetNextChangeTime_startTomorrowInDaylight()
198 expected.setTimeInMillis(tomorrow.getTimeInMillis()); in testGetNextChangeTime_startTomorrowInDaylight()
223 Calendar tomorrow = getDaylightSavingsForwardDay(); in testGetNextChangeTime_startTomorrowWhenTodayIsDaylight() local
224 tomorrow.add(Calendar.DATE, 2); in testGetNextChangeTime_startTomorrowWhenTodayIsDaylight()
226 tomorrow.get(Calendar.DAY_OF_WEEK)}; in testGetNextChangeTime_startTomorrowWhenTodayIsDaylight()
236 expected.setTimeInMillis(tomorrow.getTimeInMillis()); in testGetNextChangeTime_startTomorrowWhenTodayIsDaylight()
261 Calendar tomorrow = getDaylightSavingsBackwardDay(); in testGetNextChangeTime_startTomorrowWhenTodayIsDaylightBackward() local
262 tomorrow.add(Calendar.DATE, 2); in testGetNextChangeTime_startTomorrowWhenTodayIsDaylightBackward()
[all …]
/frameworks/base/core/java/android/widget/
DDateTimeView.java332 LocalDate tomorrow = time.toLocalDate().plusDays(1); in computeNextMidnight() local
333 LocalDateTime nextMidnight = LocalDateTime.of(tomorrow, LocalTime.MIDNIGHT); in computeNextMidnight()