Searched refs:rTimeB (Results 1 – 2 of 2) sorted by relevance
97 inline sal_Bool operator<(const TTimeValue& rTimeA, const TTimeValue& rTimeB) in operator <() argument99 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 >() argument109 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 ==() argument119 return ((rTimeA.Seconds == rTimeB.Seconds) && in operator ==()[all …]
116 friend OTime operator- (const OTime& rTimeA, const OTime& rTimeB) in operator -() argument119 aTimeC -= rTimeB; in operator -()
Completed in 10 milliseconds