Home
last modified time | relevance | path

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

/trunk/main/vos/inc/vos/
H A Dtimer.hxx54 TTimeValue(const TTimeValue& rTimeValue) in TTimeValue()
55 { Seconds = rTimeValue.Seconds; Nanosec = rTimeValue.Nanosec; } in TTimeValue()
57 TTimeValue(const TimeValue& rTimeValue) in TTimeValue()
58 { Seconds = rTimeValue.Seconds; Nanosec = rTimeValue.Nanosec; } in TTimeValue()
/trunk/main/sdext/source/presenter/
H A DPresenterTimer.cxx95 TimeValue& rTimeValue,
98 const TimeValue& rTimeValue);
408 TimeValue& rTimeValue, in ConvertToTimeValue() argument
411 rTimeValue.Seconds = sal::static_int_cast<sal_Int32>(nTimeDifference / 1000000000L); in ConvertToTimeValue()
412 rTimeValue.Nanosec = sal::static_int_cast<sal_Int32>(nTimeDifference % 1000000000L); in ConvertToTimeValue()
418 const TimeValue& rTimeValue) in ConvertFromTimeValue() argument
420 return sal_Int64(rTimeValue.Seconds) * 1000000000L + rTimeValue.Nanosec; in ConvertFromTimeValue()