Home | History | Annotate | Download | only in util

Lines Matching defs:isLeapYear

200      * functions such as isLeapYear() are not intended to be historically
510 public boolean isLeapYear(int year) {
709 return MONTH_COUNT[month][isLeapYear(extendedYear)?1:0];
715 return isLeapYear(eyear) ? 366 : 365;