Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoZonedDateTime.java601 long otherEpochSec = other.toEpochSecond(); in isBefore() local
602 return thisEpochSec < otherEpochSec || in isBefore()
603 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() < other.toLocalTime().getNano()); in isBefore()
621 long otherEpochSec = other.toEpochSecond(); in isAfter() local
622 return thisEpochSec > otherEpochSec || in isAfter()
623 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() > other.toLocalTime().getNano()); in isAfter()
/libcore/ojluni/src/main/java/java/time/
DOffsetDateTime.java1817 long otherEpochSec = other.toEpochSecond(); in isAfter() local
1818 return thisEpochSec > otherEpochSec || in isAfter()
1819 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() > other.toLocalTime().getNano()); in isAfter()
1834 long otherEpochSec = other.toEpochSecond(); in isBefore() local
1835 return thisEpochSec < otherEpochSec || in isBefore()
1836 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() < other.toLocalTime().getNano()); in isBefore()