Lines Matching refs:fSecsValue
823 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()
1092 fSecsValue += 1.0; in convertDateTime()
1094 if (fSecsValue >= 60.0) in convertDateTime()
1096 fSecsValue -= 60.0; in convertDateTime()
1132 if (fSecsValue < 10) in convertDateTime()
1134 rBuffer.append( sal_Int32( fSecsValue)); in convertDateTime()