Home | History | Annotate | Download | only in time

Lines Matching refs:leap

114      * The singleton instance for the month of February with 28 days, or 29 in a leap year.
416 * This takes a flag to determine whether to return the length for a leap year or not.
418 * February has 28 days in a standard year and 29 days in a leap year.
422 * @param leapYear true if the length is required for a leap year
489 * This returns the day-of-year that this month begins on, using the leap
492 * @param leapYear true if the length is required for a leap year
496 int leap = leapYear ? 1 : 0;
503 return 60 + leap;
505 return 91 + leap;
507 return 121 + leap;
509 return 152 + leap;
511 return 182 + leap;
513 return 213 + leap;
515 return 244 + leap;
517 return 274 + leap;
519 return 305 + leap;
522 return 335 + leap;