Searched refs:_nYear (Results 1 – 1 of 1) sorted by relevance
184 static sal_Bool implIsLeapYear(sal_Int32 _nYear) in implIsLeapYear() argument186 return ( ( ((_nYear % 4) == 0) in implIsLeapYear()187 && ((_nYear % 100) != 0) in implIsLeapYear()190 || ((_nYear % 400) == 0) in implIsLeapYear()195 static sal_Int32 implDaysInMonth(sal_Int32 _nMonth, sal_Int32 _nYear) in implDaysInMonth() argument202 if (implIsLeapYear(_nYear)) in implDaysInMonth()
Completed in 13 milliseconds