Lines Matching refs:rTimeB
97 inline sal_Bool operator<(const TTimeValue& rTimeA, const TTimeValue& rTimeB) in operator <() argument
99 if (rTimeA.Seconds < rTimeB.Seconds) in operator <()
101 else if (rTimeA.Seconds > rTimeB.Seconds) in operator <()
104 return (rTimeA.Nanosec < rTimeB.Nanosec); in operator <()
107 inline sal_Bool operator>(const TTimeValue& rTimeA, const TTimeValue& rTimeB) in operator >() argument
109 if (rTimeA.Seconds > rTimeB.Seconds) in operator >()
111 else if (rTimeA.Seconds < rTimeB.Seconds) in operator >()
114 return (rTimeA.Nanosec > rTimeB.Nanosec); in operator >()
117 inline sal_Bool operator==(const TTimeValue& rTimeA, const TTimeValue& rTimeB) in operator ==() argument
119 return ((rTimeA.Seconds == rTimeB.Seconds) && in operator ==()
120 (rTimeA.Nanosec == rTimeB.Nanosec)); in operator ==()