Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoLocalDateTime.java525 long thisEpDay = this.toLocalDate().toEpochDay(); in isAfter() local
527 return thisEpDay > otherEpDay || in isAfter()
528 … (thisEpDay == otherEpDay && this.toLocalTime().toNanoOfDay() > other.toLocalTime().toNanoOfDay()); in isAfter()
546 long thisEpDay = this.toLocalDate().toEpochDay(); in isBefore() local
548 return thisEpDay < otherEpDay || in isBefore()
549 … (thisEpDay == otherEpDay && this.toLocalTime().toNanoOfDay() < other.toLocalTime().toNanoOfDay()); in isBefore()