Home | History | Annotate | Download | only in calendarcommon

Lines Matching refs:isLeapYear

1219     static boolean isLeapYear(int year) {
1230 return isLeapYear(year) ? 366 : 365;
1250 return isLeapYear(year) ? 29 : 28;
1280 if (month >= 2 && isLeapYear(year)) {