Lines Matching refs:_rRight
86 sal_Bool operator ==(const starutil::DateTime& _rLeft, const starutil::DateTime& _rRight) in operator ==() argument
88 return ( _rLeft.HundredthSeconds == _rRight.HundredthSeconds) && in operator ==()
89 ( _rLeft.Seconds == _rRight.Seconds) && in operator ==()
90 ( _rLeft.Minutes == _rRight.Minutes) && in operator ==()
91 ( _rLeft.Hours == _rRight.Hours) && in operator ==()
92 ( _rLeft.Day == _rRight.Day) && in operator ==()
93 ( _rLeft.Month == _rRight.Month) && in operator ==()
94 ( _rLeft.Year == _rRight.Year) ; in operator ==()
98 sal_Bool operator ==(const starutil::Date& _rLeft, const starutil::Date& _rRight) in operator ==() argument
100 return ( _rLeft.Day == _rRight.Day) && in operator ==()
101 ( _rLeft.Month == _rRight.Month) && in operator ==()
102 ( _rLeft.Year == _rRight.Year) ; in operator ==()
106 sal_Bool operator ==(const starutil::Time& _rLeft, const starutil::Time& _rRight) in operator ==() argument
108 return ( _rLeft.HundredthSeconds == _rRight.HundredthSeconds) && in operator ==()
109 ( _rLeft.Seconds == _rRight.Seconds) && in operator ==()
110 ( _rLeft.Minutes == _rRight.Minutes) && in operator ==()
111 ( _rLeft.Hours == _rRight.Hours) ; in operator ==()