Lines Matching refs:_rLHS
79 sal_Bool operator ==(const OIndexField& _rLHS, const OIndexField& _rRHS) in operator ==() argument
81 return (_rLHS.sFieldName == _rRHS.sFieldName) in operator ==()
82 && (_rLHS.bSortAscending == _rRHS.bSortAscending); in operator ==()
86 sal_Bool operator !=(const OIndexField& _rLHS, const OIndexField& _rRHS) in operator !=() argument
88 return !(_rLHS == _rRHS); in operator !=()
92 sal_Bool operator ==(const IndexFields& _rLHS, const IndexFields& _rRHS) in operator ==() argument
94 if (_rLHS.size() != _rRHS.size()) in operator ==()
97 ConstIndexFieldsIterator aLeft = _rLHS.begin(); in operator ==()
98 ConstIndexFieldsIterator aLeftEnd = _rLHS.end(); in operator ==()
110 sal_Bool operator !=(const IndexFields& _rLHS, const IndexFields& _rRHS) in operator !=() argument
112 return !(_rLHS == _rRHS); in operator !=()