Lines Matching refs:_rLeft

51 sal_Bool operator ==(const DateTime& _rLeft, const DateTime& _rRight)  in operator ==()  argument
53 return ( _rLeft.HundredthSeconds == _rRight.HundredthSeconds) && in operator ==()
54 ( _rLeft.Seconds == _rRight.Seconds) && in operator ==()
55 ( _rLeft.Minutes == _rRight.Minutes) && in operator ==()
56 ( _rLeft.Hours == _rRight.Hours) && in operator ==()
57 ( _rLeft.Day == _rRight.Day) && in operator ==()
58 ( _rLeft.Month == _rRight.Month) && in operator ==()
59 ( _rLeft.Year == _rRight.Year) ; in operator ==()
63 sal_Bool operator ==(const Date& _rLeft, const Date& _rRight) in operator ==() argument
65 return ( _rLeft.Day == _rRight.Day) && in operator ==()
66 ( _rLeft.Month == _rRight.Month) && in operator ==()
67 ( _rLeft.Year == _rRight.Year) ; in operator ==()
71 sal_Bool operator ==(const Time& _rLeft, const Time& _rRight) in operator ==() argument
73 return ( _rLeft.HundredthSeconds == _rRight.HundredthSeconds) && in operator ==()
74 ( _rLeft.Seconds == _rRight.Seconds) && in operator ==()
75 ( _rLeft.Minutes == _rRight.Minutes) && in operator ==()
76 ( _rLeft.Hours == _rRight.Hours) ; in operator ==()
429 sal_Bool operator ==(const FontDescriptor& _rLeft, const FontDescriptor& _rRight) in operator ==() argument
431 return ( _rLeft.Name.equals( _rRight.Name ) ) && in operator ==()
432 ( _rLeft.Height == _rRight.Height ) && in operator ==()
433 ( _rLeft.Width == _rRight.Width ) && in operator ==()
434 ( _rLeft.StyleName.equals( _rRight.StyleName ) ) && in operator ==()
435 ( _rLeft.Family == _rRight.Family ) && in operator ==()
436 ( _rLeft.CharSet == _rRight.CharSet ) && in operator ==()
437 ( _rLeft.Pitch == _rRight.Pitch ) && in operator ==()
438 ( _rLeft.CharacterWidth == _rRight.CharacterWidth ) && in operator ==()
439 ( _rLeft.Weight == _rRight.Weight ) && in operator ==()
440 ( _rLeft.Slant == _rRight.Slant ) && in operator ==()
441 ( _rLeft.Underline == _rRight.Underline ) && in operator ==()
442 ( _rLeft.Strikeout == _rRight.Strikeout ) && in operator ==()
443 ( _rLeft.Orientation == _rRight.Orientation ) && in operator ==()
444 ( _rLeft.Kerning == _rRight.Kerning ) && in operator ==()
445 ( _rLeft.WordLineMode == _rRight.WordLineMode ) && in operator ==()
446 ( _rLeft.Type == _rRight.Type ) ; in operator ==()