Searched refs:_nVal (Results 1 – 4 of 4) sorted by relevance
101 Date DBTypeConversion::toDate(sal_Int32 _nVal) in toDate() argument104 aReturn.Day = (sal_uInt16)(_nVal % 100); in toDate()105 aReturn.Month = (sal_uInt16)((_nVal / 100) % 100); in toDate()106 aReturn.Year = (sal_uInt16)(_nVal / 10000); in toDate()111 Time DBTypeConversion::toTime(sal_Int32 _nVal) in toTime() argument114 aReturn.Hours = (sal_uInt16)(((sal_uInt32)(_nVal >= 0 ? _nVal : _nVal*-1)) / 1000000); in toTime()115 … aReturn.Minutes = (sal_uInt16)((((sal_uInt32)(_nVal >= 0 ? _nVal : _nVal*-1)) / 10000) % 100); in toTime()116 aReturn.Seconds = (sal_uInt16)((((sal_uInt32)(_nVal >= 0 ? _nVal : _nVal*-1)) / 100) % 100); in toTime()117 … aReturn.HundredthSeconds = (sal_uInt16)(((sal_uInt32)(_nVal >= 0 ? _nVal : _nVal*-1)) % 100); in toTime()
169 OKeyValue* OKeyValue::createKeyValue(sal_Int32 _nVal) in createKeyValue() argument171 return new OKeyValue(_nVal); in createKeyValue()
136 static ::com::sun::star::util::Date toDate(sal_Int32 _nVal);137 static ::com::sun::star::util::Time toTime(sal_Int32 _nVal);
1314 sal_Int16 _nVal; in MergeMailFiles() local1322 aVal >>= _nVal; in MergeMailFiles()
Completed in 44 milliseconds