Home
last modified time | relevance | path

Searched refs:FX_IsLeapYear (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fxcrt/
Dcfx_datetime.cpp34 FX_IsLeapYear(iYear) ? g_FXDaysBeforeLeapMonth : g_FXDaysBeforeMonth; in DaysBeforeMonthInYear()
40 return FX_IsLeapYear(iYear) ? g_FXDaysPerLeapYear : g_FXDaysPerYear; in DaysInYear()
84 FX_IsLeapYear(iYear) ? g_FXDaysPerLeapMonth : g_FXDaysPerMonth; in FX_DaysInMonth()
88 bool FX_IsLeapYear(int32_t iYear) { in FX_IsLeapYear() function
Dcfx_datetime.h12 bool FX_IsLeapYear(int32_t iYear);
/external/pdfium/xfa/fgas/crt/
Dcfgas_formatstring.cpp517 return FX_IsLeapYear(year) ? 29 : 28; in GetSolarMonthDays()
527 if (FX_IsLeapYear(year) && month > 2) in GetWeekDay()