Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoLocalDateTime.java533 long otherEpDay = other.toLocalDate().toEpochDay(); in isAfter() local
534 return thisEpDay > otherEpDay || in isAfter()
535 … (thisEpDay == otherEpDay && this.toLocalTime().toNanoOfDay() > other.toLocalTime().toNanoOfDay()); in isAfter()
554 long otherEpDay = other.toLocalDate().toEpochDay(); in isBefore() local
555 return thisEpDay < otherEpDay || in isBefore()
556 … (thisEpDay == otherEpDay && this.toLocalTime().toNanoOfDay() < other.toLocalTime().toNanoOfDay()); in isBefore()