Lines Matching full:eyear
108 * @param eyear The year in Saka Era
111 int32_t IndianCalendar::handleGetMonthLength(int32_t eyear, int32_t month) const {
113 eyear += ClockMath::floorDivide(month, 12, month);
116 if (isGregorianLeap(eyear + INDIAN_ERA_START) && month == 0) {
130 * @param eyear The year in Saka Era.
132 int32_t IndianCalendar::handleGetYearLength(int32_t eyear) const {
133 return isGregorianLeap(eyear + INDIAN_ERA_START) ? 366 : 365;
237 * @param eyear The year in Indian Calendar measured from Saka Era (78 AD).
240 int32_t IndianCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, UBool /* useMonth */ ) const {
247 eyear += (int32_t)ClockMath::floorDivide(month, 12, month);
256 double jd = IndianToJD(eyear ,imonth, 1);