Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/chrono/
DHijrahDate.java624 HijrahDate otherDate = (HijrahDate) obj; in equals() local
625 return prolepticYear == otherDate.prolepticYear in equals()
626 && this.monthOfYear == otherDate.monthOfYear in equals()
627 && this.dayOfMonth == otherDate.dayOfMonth in equals()
628 && getChronology().equals(otherDate.getChronology()); in equals()
DThaiBuddhistDate.java455 ThaiBuddhistDate otherDate = (ThaiBuddhistDate) obj; in equals() local
456 return this.isoDate.equals(otherDate.isoDate); in equals()
DMinguoDate.java455 MinguoDate otherDate = (MinguoDate) obj; in equals() local
456 return this.isoDate.equals(otherDate.isoDate); in equals()
DJapaneseDate.java700 JapaneseDate otherDate = (JapaneseDate) obj; in equals() local
701 return this.isoDate.equals(otherDate.isoDate); in equals()
/libcore/ojluni/src/main/java/java/time/
DLocalDate.java1866 int compareTo0(LocalDate otherDate) { in compareTo0() argument
1867 int cmp = (year - otherDate.year); in compareTo0()
1869 cmp = (month - otherDate.month); in compareTo0()
1871 cmp = (day - otherDate.day); in compareTo0()