Lines Matching refs:nMonth
1343 lcl_MaxDaysPerMonth(const sal_Int32 nMonth, const sal_Int32 nYear) in lcl_MaxDaysPerMonth() argument
1347 OSL_ASSERT(0 < nMonth && nMonth <= 12); in lcl_MaxDaysPerMonth()
1348 if ((2 == nMonth) && lcl_isLeapYear(nYear)) in lcl_MaxDaysPerMonth()
1352 return s_MaxDaysPerMonth[nMonth - 1]; in lcl_MaxDaysPerMonth()
1386 sal_Int32 nMonth(0); in convertDateOrDateTime() local
1389 bSuccess = readDateTimeComponent(string, nPos, nMonth, 2, true); in convertDateOrDateTime()
1390 bSuccess &= (0 < nMonth) && (nMonth <= 12); in convertDateOrDateTime()
1406 bSuccess &= (0 < nDay) && (nDay <= lcl_MaxDaysPerMonth(nMonth, nYear)); in convertDateOrDateTime()
1498 lcl_addDay(bNegative, nYear, nMonth, nDay, 1); in convertDateOrDateTime()
1570 lcl_addTimezone(bNegative, nYear, nMonth, nDay, nHours, nMinutes, in convertDateOrDateTime()
1581 rDateTime.Month = static_cast<sal_uInt16>(nMonth); in convertDateOrDateTime()
1594 rDate.Month = static_cast<sal_uInt16>(nMonth); in convertDateOrDateTime()