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.java608 long otherEpochSec = other.toEpochSecond(); in isBefore() local
609 return thisEpochSec < otherEpochSec || in isBefore()
610 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() < other.toLocalTime().getNano()); in isBefore()
628 long otherEpochSec = other.toEpochSecond(); in isAfter() local
629 return thisEpochSec > otherEpochSec || in isAfter()
630 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() > other.toLocalTime().getNano()); in isAfter()
/libcore/ojluni/src/main/java/java/time/
DOffsetDateTime.java1823 long otherEpochSec = other.toEpochSecond(); in isAfter() local
1824 return thisEpochSec > otherEpochSec || in isAfter()
1825 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() > other.toLocalTime().getNano()); in isAfter()
1840 long otherEpochSec = other.toEpochSecond(); in isBefore() local
1841 return thisEpochSec < otherEpochSec || in isBefore()
1842 … (thisEpochSec == otherEpochSec && toLocalTime().getNano() < other.toLocalTime().getNano()); in isBefore()