Lines Matching refs:nMonth
1835 sal_Bool implDateSerial( sal_Int16 nYear, sal_Int16 nMonth, sal_Int16 nDay, double& rdRet ) in implDateSerial() argument
1841 Date aCurDate( nDay, nMonth, nYear ); in implDateSerial()
1849 if ( (nMonth < 1 || nMonth > 12 )|| in implDateSerial()
1859 aCurDate = Date( 1, (( nMonth % 12 ) > 0 ) ? ( nMonth % 12 ) : 12 + ( nMonth % 12 ), nYear ); in implDateSerial()
1864 if( ( nMonth < 1 ) || ( nMonth > 12 ) ) in implDateSerial()
1868 sal_Int16 nYearAdj = ( nMonth /12 ); // default to positive months inputed in implDateSerial()
1869 if ( nMonth <=0 ) in implDateSerial()
1870 nYearAdj = ( ( nMonth -12 ) / 12 ); in implDateSerial()
1946 sal_Int16 nMonth = rPar.Get(2)->GetInteger(); in RTLFUNC() local
1950 if( implDateSerial( nYear, nMonth, nDay, dDate ) ) in RTLFUNC()
2176 sal_Int16 nMonth = implGetDateMonth( rPar.Get(1)->GetDate() ); in RTLFUNC() local
2177 rPar.Get(0)->PutInteger( nMonth ); in RTLFUNC()