Lines Matching refs:Seconds
47 { Seconds = 0; Nanosec = 0; } in TTimeValue()
49 TTimeValue(sal_uInt32 Seconds, sal_uInt32 Nano);
52 { Seconds = MilliSecs / 1000L; Nanosec = (MilliSecs % 1000) * 1000000L; } in TTimeValue()
55 { Seconds = rTimeValue.Seconds; Nanosec = rTimeValue.Nanosec; } in TTimeValue()
58 { Seconds = rTimeValue.Seconds; Nanosec = rTimeValue.Nanosec; } in TTimeValue()
71 Seconds += Nanosec / 1000000000; in normalize()
78 Seconds = Secs; in TTimeValue()
86 Seconds += Time.Seconds; in addTime()
94 return ((Seconds == 0) && (Nanosec == 0)); in isEmpty()
99 if (rTimeA.Seconds < rTimeB.Seconds) in operator <()
101 else if (rTimeA.Seconds > rTimeB.Seconds) in operator <()
109 if (rTimeA.Seconds > rTimeB.Seconds) in operator >()
111 else if (rTimeA.Seconds < rTimeB.Seconds) in operator >()
119 return ((rTimeA.Seconds == rTimeB.Seconds) && in operator ==()