Searched refs:tomorrow (Results 1 – 3 of 3) sorted by relevance
109 final long tomorrow = addDays(time, 1); in getNextTime() local110 return adjust ? getClosestActualTime(tomorrow, hr, min) : getTime(tomorrow, hr, min); in getNextTime()
185 Calendar tomorrow = getDaylightSavingsForwardDay(); in testGetNextChangeTime_startTomorrowInDaylight() local186 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() local224 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() local262 tomorrow.add(Calendar.DATE, 2); in testGetNextChangeTime_startTomorrowWhenTodayIsDaylightBackward()[all …]
332 LocalDate tomorrow = time.toLocalDate().plusDays(1); in computeNextMidnight() local333 LocalDateTime nextMidnight = LocalDateTime.of(tomorrow, LocalTime.MIDNIGHT); in computeNextMidnight()