/trunk/main/svtools/source/misc/ |
H A D | templatefoldercache.cxx | 96 && _rLHS.Seconds == _rRHS.Seconds in operator ==() 97 && _rLHS.Minutes == _rRHS.Minutes in operator ==() 98 && _rLHS.Hours == _rRHS.Hours in operator ==() 99 && _rLHS.Day == _rRHS.Day in operator ==() 100 && _rLHS.Month == _rRHS.Month in operator ==() 101 && _rLHS.Year == _rRHS.Year; in operator ==() 107 return !( _rLHS == _rRHS ); in operator !=() 266 if ( _rLHS->getURL() != _rRHS->getURL() ) in operator ()() 281 _rRHS->getSubContents().begin(), in operator ()() 559 if ( _rLHS.size() != _rRHS.size() ) in equalStates() [all …]
|
/trunk/main/forms/source/richtext/ |
H A D | rtattributes.hxx | 76 inline bool operator==( const AttributeState& _rRHS ); 136 inline bool AttributeState::operator==( const AttributeState& _rRHS ) in operator ==() argument 138 if ( eSimpleState != _rRHS.eSimpleState ) in operator ==() 141 if ( pItemHandle && !_rRHS.pItemHandle ) in operator ==() 144 if ( !pItemHandle && _rRHS.pItemHandle ) in operator ==() 147 if ( !pItemHandle && !_rRHS.pItemHandle ) in operator ==() 150 return ( pItemHandle->GetItem() == _rRHS.pItemHandle->GetItem() ); in operator ==()
|
/trunk/main/comphelper/source/misc/ |
H A D | asyncnotification.cxx | 87 ProcessableEvent( const ProcessableEvent& _rRHS ) in ProcessableEvent() 88 :aEvent( _rRHS.aEvent ) in ProcessableEvent() 89 ,xProcessor( _rRHS.xProcessor ) in ProcessableEvent() 93 ProcessableEvent& operator=( const ProcessableEvent& _rRHS ) in operator =() 95 aEvent = _rRHS.aEvent; in operator =() 96 xProcessor = _rRHS.xProcessor; in operator =()
|
/trunk/main/dbaccess/source/ui/dlg/ |
H A D | indexdialog.cxx | 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 ==() 99 ConstIndexFieldsIterator aRight = _rRHS.begin(); in operator ==() 110 sal_Bool operator !=(const IndexFields& _rLHS, const IndexFields& _rRHS) in operator !=() argument 112 return !(_rLHS == _rRHS); in operator !=()
|
H A D | generalpage.cxx | 168 bool operator() ( const DisplayedType& _rLHS, const DisplayedType& _rRHS ) in operator ()() 170 return _rLHS.eType < _rRHS.eType; in operator ()()
|
/trunk/main/forms/source/xforms/ |
H A D | convert.cxx | 97 StringToken::StringToken( const StringToken& _rRHS ) in StringToken() argument 99 *this = _rRHS; in StringToken() 103 StringToken& StringToken::operator=( const StringToken& _rRHS ) in operator =() argument 105 if ( this == &_rRHS ) in operator =() 108 m_sString = _rRHS.m_sString; in operator =() 109 m_nTokenStart = _rRHS.m_nTokenStart; in operator =() 110 m_nTokenEnd = _rRHS.m_nTokenEnd; in operator =()
|
/trunk/main/unotools/inc/unotools/ |
H A D | sharedunocomponent.hxx | 266 …star::uno::Reference< INTERFACE >& _rLHS, const SharedUNOComponent< INTERFACE, COMPONENT >& _rRHS ) in operator ==() argument 268 return _rLHS == _rRHS.getTyped(); in operator ==() 272 …ponent< INTERFACE, COMPONENT >& _rLHS, const ::com::sun::star::uno::Reference< INTERFACE >& _rRHS ) in operator ==() argument 274 return _rLHS.getTyped() == _rRHS; in operator ==()
|
/trunk/main/svtools/source/dialogs/ |
H A D | roadmapwizard.cxx | 91 sal_Int32 getFirstDifferentIndex( const WizardPath& _rLHS, const WizardPath& _rRHS ); 118 …Int32 RoadmapWizardImpl::getFirstDifferentIndex( const WizardPath& _rLHS, const WizardPath& _rRHS ) in getFirstDifferentIndex() argument 120 sal_Int32 nMinLength = ::std::min( _rLHS.size(), _rRHS.size() ); in getFirstDifferentIndex() 123 if ( _rLHS[ nCheck ] != _rRHS[ nCheck ] ) in getFirstDifferentIndex()
|
/trunk/main/forms/source/inc/ |
H A D | componenttools.hxx | 47 bool operator()( const Type& _rLHS, const Type& _rRHS ) const in operator ()() 49 return _rLHS.getTypeName() < _rRHS.getTypeName(); in operator ()()
|
/trunk/main/reportdesign/source/core/misc/ |
H A D | conditionalexpression.cxx | 47 …tl::OUString& _rFieldDataSource, const ::rtl::OUString& _rLHS, const ::rtl::OUString& _rRHS ) const in assembleExpression() 59 case '2': pReplace = &_rRHS; break; in assembleExpression()
|
/trunk/main/svx/source/inc/ |
H A D | fmcontrolbordermanager.hxx | 138 bool operator()( const ControlData& _rLHS, const ControlData& _rRHS ) const in operator ()() 140 return _rLHS.xControl.get() < _rRHS.xControl.get(); in operator ()()
|
/trunk/main/extensions/source/propctrlr/ |
H A D | genericpropertyhandler.hxx | 50 …rator()( const ::com::sun::star::uno::Type& _rLHS, const ::com::sun::star::uno::Type& _rRHS ) const in operator ()() 52 return _rLHS.getTypeName() < _rRHS.getTypeName(); in operator ()()
|
H A D | formmetadata.cxx | 86 bool operator()( const OPropertyInfoImpl& _rLHS, const OPropertyInfoImpl& _rRHS ) in operator ()() 88 return _rLHS.sName.CompareTo( _rRHS.sName ) == COMPARE_LESS; in operator ()()
|
/trunk/main/comphelper/source/property/ |
H A D | opropertybag.hxx | 57 …rator()( const ::com::sun::star::uno::Type& _rLHS, const ::com::sun::star::uno::Type& _rRHS ) const in operator ()() 61 _rRHS.getTypeLibType()->pTypeName->buffer in operator ()()
|
H A D | opropertybag.cxx | 382 bool operator()( const PropertyValue& _rLHS, const PropertyValue& _rRHS ) in operator ()() 384 return _rLHS.Name < _rRHS.Name; in operator ()()
|
H A D | propertycontainerhelper.cxx | 198 bool operator()( sal_Int32 _nLHS, const PropertyDescription& _rRHS ) const in operator ()() 200 return _nLHS < _rRHS.aProperty.Handle; in operator ()()
|
/trunk/main/toolkit/source/controls/ |
H A D | geometrycontrolmodel.cxx | 509 bool operator()( const Property& _rLHS, const Property& _rRHS ) in operator ()() 511 return _rLHS.Name < _rRHS.Name ? true : false; in operator ()()
|
/trunk/main/reportdesign/inc/ |
H A D | conditionalexpression.hxx | 56 …l::OUString& _rFieldDataSource, const ::rtl::OUString& _rLHS, const ::rtl::OUString& _rRHS ) const;
|
/trunk/main/dbaccess/source/core/dataaccess/ |
H A D | connection.cxx | 450 bool operator() ( const Type& _rLHS, const Type& _rRHS ) const in operator ()() 452 return _rLHS.getTypeName() < _rRHS.getTypeName(); in operator ()()
|