Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/
DLocalTime.java1116 … int newSofd = ((int) (secondstoAdd % SECONDS_PER_DAY) + sofd + SECONDS_PER_DAY) % SECONDS_PER_DAY; in plusSeconds() local
1117 if (sofd == newSofd) { in plusSeconds()
1120 int newHour = newSofd / SECONDS_PER_HOUR; in plusSeconds()
1121 int newMinute = (newSofd / SECONDS_PER_MINUTE) % MINUTES_PER_HOUR; in plusSeconds()
1122 int newSecond = newSofd % SECONDS_PER_MINUTE; in plusSeconds()