Lines Matching refs:aTime
73 ::com::sun::star::util::Time aTime; in lcl_getTime()
76 aTime.HundredthSeconds = (sal_uInt16)( nIntValue % 100 ); in lcl_getTime()
78 aTime.Seconds = (sal_uInt16)( nIntValue % 60 ); in lcl_getTime()
80 aTime.Minutes = (sal_uInt16)( nIntValue % 60 ); in lcl_getTime()
83 aTime.Hours = static_cast< sal_uInt16 >( nIntValue ); in lcl_getTime()
85 return aTime; in lcl_getTime()
222 ::com::sun::star::util::Time aTime = lcl_getTime(nValue); in convertString()
226 aDateTime.HundredthSeconds = aTime.HundredthSeconds; in convertString()
227 aDateTime.Seconds = aTime.Seconds; in convertString()
228 aDateTime.Minutes = aTime.Minutes; in convertString()
229 aDateTime.Hours = aTime.Hours; in convertString()