Home
last modified time | relevance | path

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

/trunk/main/svl/inc/svl/
H A Dzforlist.hxx663 inline static sal_uInt16 ExpandTwoDigitYear( sal_uInt16 nYear, sal_uInt16 nTwoDigitYearStart );
1016 sal_uInt16 nYear, sal_uInt16 nTwoDigitYearStart ) in ExpandTwoDigitYear() argument
1020 if ( nYear < (nTwoDigitYearStart % 100) ) in ExpandTwoDigitYear()
1021 return nYear + (((nTwoDigitYearStart / 100) + 1) * 100); in ExpandTwoDigitYear()
1023 return nYear + ((nTwoDigitYearStart / 100) * 100); in ExpandTwoDigitYear()
/trunk/main/vcl/source/control/
H A Dfield2.cxx1373 sal_uInt16 nTwoDigitYearStart = utl::MiscCfg().GetYear2000(); in ImplGetDateAsText() local
1377 if ( (nYear < nTwoDigitYearStart) || (nYear >= nTwoDigitYearStart+100) ) in ImplGetDateAsText()
2032 void DateFormatter::ExpandCentury( Date& rDate, sal_uInt16 nTwoDigitYearStart ) in ExpandCentury() argument
2037 sal_uInt16 nCentury = nTwoDigitYearStart / 100; in ExpandCentury()
2038 if ( nDateYear < (nTwoDigitYearStart % 100) ) in ExpandCentury()
/trunk/main/vcl/inc/vcl/
H A Dfield.hxx393 static void ExpandCentury( Date& rDate, sal_uInt16 nTwoDigitYearStart );

Completed in 37 milliseconds