Searched refs:rTimeValue (Results 1 – 2 of 2) sorted by relevance
54 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()
95 TimeValue& rTimeValue,98 const TimeValue& rTimeValue);408 TimeValue& rTimeValue, in ConvertToTimeValue() argument411 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() argument420 return sal_Int64(rTimeValue.Seconds) * 1000000000L + rTimeValue.Nanosec; in ConvertFromTimeValue()