Searched defs:daysInYear (Results 1 – 1 of 1) sorted by relevance
876 private int daysInYear(int year) { in daysInYear() method in GregorianCalendar877 int daysInYear = isLeapYear(year) ? 366 : 365; in daysInYear() local887 private int daysInYear(boolean leapYear, int month) { in daysInYear() method in GregorianCalendar