Searched refs:rTimeValue (Results 1 – 2 of 2) sorted by relevance
53 TTimeValue(const TTimeValue& rTimeValue) in TTimeValue()54 { Seconds = rTimeValue.Seconds; Nanosec = rTimeValue.Nanosec; } in TTimeValue()56 TTimeValue(const TimeValue& rTimeValue) in TTimeValue()57 { Seconds = rTimeValue.Seconds; Nanosec = rTimeValue.Nanosec; } in TTimeValue()
98 TimeValue& rTimeValue,101 const TimeValue& rTimeValue);426 TimeValue& rTimeValue, in ConvertToTimeValue() argument429 rTimeValue.Seconds = sal::static_int_cast<sal_Int32>(nTimeDifference / 1000000000L); in ConvertToTimeValue()430 rTimeValue.Nanosec = sal::static_int_cast<sal_Int32>(nTimeDifference % 1000000000L); in ConvertToTimeValue()437 const TimeValue& rTimeValue) in ConvertFromTimeValue() argument439 return sal_Int64(rTimeValue.Seconds) * 1000000000L + rTimeValue.Nanosec; in ConvertFromTimeValue()
Completed in 24 milliseconds