Home
last modified time | relevance | path

Searched refs:fSecsValue (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/xmloff/source/core/
H A Dxmluconv.cxx823 double fSecsValue = ::rtl::math::approxFloor (fValue); in convertTime() local
824 fValue -= fSecsValue; in convertTime()
834 fSecsValue += 1.0; in convertTime()
836 if (fSecsValue >= 60.0) in convertTime()
838 fSecsValue -= 60.0; in convertTime()
855 if (fSecsValue < 10) in convertTime()
857 rBuffer.append( sal_Int32( fSecsValue)); in convertTime()
1070 double fSecsValue = 0; in convertDateTime() local
1082 fSecsValue = ::rtl::math::approxFloor (fValue); in convertDateTime()
1083 fValue -= fSecsValue; in convertDateTime()
[all …]
/AOO41X/main/sax/source/tools/
H A Dconverter.cxx702 double fSecsValue = ::rtl::math::approxFloor (fValue); in convertDuration() local
703 fValue -= fSecsValue; in convertDuration()
713 fSecsValue += 1.0; in convertDuration()
715 if (fSecsValue >= 60.0) in convertDuration()
717 fSecsValue -= 60.0; in convertDuration()
734 if (fSecsValue < 10) in convertDuration()
736 rBuffer.append( sal_Int32( fSecsValue)); in convertDuration()