Lines Matching refs:nSeconds
2630 sal_uLong nSeconds = (sal_uLong)floor( fTime ); in ImpGetTimeOutput() local
2632 String sSecStr( ::rtl::math::doubleToUString( fTime-nSeconds, in ImpGetTimeOutput()
2652 nHour = (nSeconds/3600) % 24; in ImpGetTimeOutput()
2653 nMin = (nSeconds%3600) / 60; in ImpGetTimeOutput()
2654 nSec = nSeconds%60; in ImpGetTimeOutput()
2660 nSec = nSeconds; in ImpGetTimeOutput()
2665 nMin = nSeconds / 60; in ImpGetTimeOutput()
2666 nSec = nSeconds % 60; in ImpGetTimeOutput()
2670 nHour = nSeconds / 3600; in ImpGetTimeOutput()
2671 nMin = (nSeconds%3600) / 60; in ImpGetTimeOutput()
2672 nSec = nSeconds%60; in ImpGetTimeOutput()
3162 sal_uLong nSeconds = (sal_uLong)floor( fTime ); in ImpGetDateTimeOutput() local
3163 String sSecStr( ::rtl::math::doubleToUString( fTime-nSeconds, in ImpGetDateTimeOutput()
3183 nHour = (nSeconds/3600) % 24; in ImpGetDateTimeOutput()
3184 nMin = (nSeconds%3600) / 60; in ImpGetDateTimeOutput()
3185 nSec = nSeconds%60; in ImpGetDateTimeOutput()
3191 nSec = nSeconds; in ImpGetDateTimeOutput()
3196 nMin = nSeconds / 60; in ImpGetDateTimeOutput()
3197 nSec = nSeconds % 60; in ImpGetDateTimeOutput()
3201 nHour = nSeconds / 3600; in ImpGetDateTimeOutput()
3202 nMin = (nSeconds%3600) / 60; in ImpGetDateTimeOutput()
3203 nSec = nSeconds%60; in ImpGetDateTimeOutput()