Lines Matching full:gregorian
94 * Determine whether the given gregorian year is a Leap year
136 * Returns the Julian Day corresponding to gregorian date
138 * @param year The Gregorian year
139 * @param month The month in Gregorian Year
140 * @param date The date in Gregorian day in month
158 * Returns the Gregorian Date corresponding to a given Julian Day
288 * method is called. The getGregorianXxx() methods return Gregorian
294 int32_t gregorianYear; // Stores gregorian date corresponding to Julian day;
297 gregorianYear = jdToGregorian(julianDay, gd)[0]; // Gregorian date for Julian day
299 jdAtStartOfGregYear = gregorianToJD(gregorianYear, 1, 1); // JD at start of Gregorian year
300 yday = (int32_t)(julianDay - jdAtStartOfGregYear); // Day number in Gregorian year (starting from 0)
305 leapMonth = isGregorianLeap(gregorianYear - 1) ? 31 : 30; // Days in leapMonth this year, previous Gregorian year