| /trunk/main/store/source/ |
| H A D | storbase.hxx | 112 template< typename T > void swap (T & lhs, T & rhs) in swap() argument 114 T tmp = lhs; lhs = rhs; rhs = tmp; in swap() 164 void swap (SharedCount & rhs) // nothrow in swap() argument 166 store::swap(m_pCount, rhs.m_pCount); in swap() 169 SharedCount (SharedCount const & rhs) // nothrow in SharedCount() argument 170 : m_pCount (rhs.m_pCount) in SharedCount() 174 SharedCount & operator= (SharedCount const & rhs) // nothrow in operator =() argument 176 SharedCount tmp(rhs); in operator =() 206 void swap (OStorePageGuard & rhs) in swap() 208 store::swap(m_nMagic, rhs.m_nMagic); in swap() [all …]
|
| H A D | storbios.cxx | 82 OStoreSuperBlock (const OStoreSuperBlock & rhs) in OStoreSuperBlock() 83 : m_aGuard (rhs.m_aGuard), in OStoreSuperBlock() 84 m_aDescr (rhs.m_aDescr), in OStoreSuperBlock() 85 m_nMarked (rhs.m_nMarked), in OStoreSuperBlock() 86 m_aMarked (rhs.m_aMarked), in OStoreSuperBlock() 87 m_nUnused (rhs.m_nUnused), in OStoreSuperBlock() 88 m_aUnused (rhs.m_aUnused) in OStoreSuperBlock() 91 OStoreSuperBlock& operator= (const OStoreSuperBlock & rhs) in operator =() 93 m_aGuard = rhs.m_aGuard; in operator =() 94 m_aDescr = rhs.m_aDescr; in operator =() [all …]
|
| H A D | stortree.hxx | 65 OStoreBTreeEntry (const OStoreBTreeEntry & rhs) in OStoreBTreeEntry() 66 : m_aKey (rhs.m_aKey), in OStoreBTreeEntry() 67 m_aLink (rhs.m_aLink), in OStoreBTreeEntry() 68 m_nAttrib (rhs.m_nAttrib) in OStoreBTreeEntry() 71 OStoreBTreeEntry& operator= (const OStoreBTreeEntry & rhs) in operator =() 73 m_aKey = rhs.m_aKey; in operator =() 74 m_aLink = rhs.m_aLink; in operator =() 75 m_nAttrib = rhs.m_nAttrib; in operator =()
|
| /trunk/main/basebmp/inc/basebmp/ |
| H A D | packedpixeliterator.hxx | 104 bool equal( PackedPixelColumnIterator const & rhs ) const in equal() 106 return rhs.y == y; in equal() 109 bool less( PackedPixelColumnIterator const & rhs ) const in less() 111 return y < rhs.y; in less() 179 bool operator==(PackedPixelColumnIterator const & rhs) const in operator ==() 181 return equal( rhs ); in operator ==() 184 bool operator!=(PackedPixelColumnIterator const & rhs) const in operator !=() 186 return !equal( rhs ); in operator !=() 189 bool operator<(PackedPixelColumnIterator const & rhs) const in operator <() 191 return less(rhs); in operator <() [all …]
|
| H A D | pixeliterator.hxx | 51 bool equal( PixelColumnIterator const & rhs ) const in equal() 53 return rhs.y == y; in equal() 56 bool less( PixelColumnIterator const & rhs ) const in less() 58 return y < rhs.y; in less() 126 bool operator==(PixelColumnIterator const & rhs) const in operator ==() 128 return equal( rhs ); in operator ==() 131 bool operator!=(PixelColumnIterator const & rhs) const in operator !=() 133 return !equal( rhs ); in operator !=() 136 bool operator<(PixelColumnIterator const & rhs) const in operator <() 138 return less(rhs); in operator <() [all …]
|
| H A D | compositeiterator.hxx | 55 bool operator==(ArithmeticProxy const & rhs) const in operator ==() 56 { return *mpVal1==*rhs.mpVal1 && *mpVal2==*rhs.mpVal2; } in operator ==() 58 bool operator!=(ArithmeticProxy const & rhs) const in operator !=() 59 { return *mpVal1!=*rhs.mpVal1 || *mpVal2!=*rhs.mpVal2; } in operator !=() 61 bool operator<(ArithmeticProxy const & rhs) const in operator <() 62 { return *mpVal1<*rhs.mpVal1 && *mpVal2<*rhs.mpVal2; } in operator <() 64 bool operator<=(ArithmeticProxy const & rhs) const in operator <=() 65 { return *mpVal1<=*rhs.mpVal1 && *mpVal2<=*rhs.mpVal2; } in operator <=() 67 bool operator>(ArithmeticProxy const & rhs) const in operator >() 68 { return *mpVal1>*rhs.mpVal1 && *mpVal2>*rhs.mpVal2; } in operator >() [all …]
|
| H A D | stridedarrayiterator.hxx | 76 int operator-(StridedArrayIterator const & rhs) const in operator -() 77 { return (current_ - rhs.current_) / stride_; } in operator -() 79 bool operator==(StridedArrayIterator const & rhs) const in operator ==() 80 { return current_ == rhs.current_; } in operator ==() 82 bool operator!=(StridedArrayIterator const & rhs) const in operator !=() 83 { return current_ != rhs.current_; } in operator !=() 85 bool operator<(StridedArrayIterator const & rhs) const in operator <() 86 { return *this - rhs < 0; } in operator <() 88 bool operator<=(StridedArrayIterator const & rhs) const in operator <=() 89 { return *this - rhs <= 0; } in operator <=() [all …]
|
| /trunk/main/basebmp/test/ |
| H A D | bmpdemo.cxx | 186 bool operator==(StridedArrayIterator const & rhs) const in operator ==() 187 { return (current_ == rhs.current_); } in operator ==() 189 bool operator!=(StridedArrayIterator const & rhs) const in operator !=() 190 { return (current_ != rhs.current_); } in operator !=() 192 bool operator<(StridedArrayIterator const & rhs) const in operator <() 193 { return (current_ < rhs.current_); } in operator <() 195 bool operator<=(StridedArrayIterator const & rhs) const in operator <=() 196 { return (current_ <= rhs.current_); } in operator <=() 198 bool operator>(StridedArrayIterator const & rhs) const in operator >() 199 { return (current_ > rhs.current_); } in operator >() [all …]
|
| /trunk/main/comphelper/source/misc/ |
| H A D | anycompare.cxx | 81 Date lhs, rhs; in isLess() local 83 || !( _rhs >>= rhs ) in isLess() 87 if ( lhs.Year < rhs.Year ) in isLess() 89 if ( lhs.Year > rhs.Year ) in isLess() 92 if ( lhs.Month < rhs.Month ) in isLess() 94 if ( lhs.Month > rhs.Month ) in isLess() 97 if ( lhs.Day < rhs.Day ) in isLess() 111 Time lhs, rhs; in isLess() local 113 || !( _rhs >>= rhs ) in isLess() 117 if ( lhs.Hours < rhs.Hours ) in isLess() [all …]
|
| /trunk/main/store/workben/ |
| H A D | t_page.cxx | 41 template< class T > void swap (T & lhs, T & rhs) in swap() argument 43 T tmp = rhs; rhs = lhs; lhs = tmp; in swap() 95 friend void swap<> (SharedCount & lhs, SharedCount & rhs); // nothrow 97 SharedCount (SharedCount const & rhs); // nothrow 98 SharedCount & operator= (SharedCount const & rhs); // nothrow 102 inline void swap (SharedCount & lhs, SharedCount & rhs) // nothrow in swap() argument 104 swap<long*>(lhs.m_pCount, rhs.m_pCount); in swap() 107 SharedCount::SharedCount (SharedCount const & rhs) // nothrow in SharedCount() argument 108 : m_pCount (rhs.m_pCount) in SharedCount() 114 SharedCount::operator= (SharedCount const & rhs) // nothrow in operator =() argument [all …]
|
| /trunk/main/connectivity/source/inc/ado/ |
| H A D | Awrapado.hxx | 63 WpADOConnection(const WpADOConnection& rhs){operator=(rhs);} in WpADOConnection() argument 65 WpADOConnection& operator=(const WpADOConnection& rhs) in operator =() argument 66 {WpOLEBase<ADOConnection>::operator=(rhs); return *this;} in operator =() 173 WpADOCommand(const WpADOCommand& rhs){operator=(rhs);} in WpADOCommand() argument 175 WpADOCommand& operator=(const WpADOCommand& rhs) in operator =() argument 177 WpOLEBase<ADOCommand>::operator=(rhs); return *this;} in operator =() 213 WpADOError(const WpADOError& rhs){operator=(rhs);} in WpADOError() argument 215 WpADOError& operator=(const WpADOError& rhs) in operator =() argument 216 {WpOLEBase<ADOError>::operator=(rhs); return *this;} in operator =() 240 WpADOField(const WpADOField& rhs){operator=(rhs);} in WpADOField() argument [all …]
|
| H A D | Aolewrap.hxx | 51 WpBase& operator=(const WpBase& rhs); 52 WpBase& operator=(IDispatch* rhs); 88 WpOLEBase<T>& operator=(const WpOLEBase<T>& rhs) in operator =() argument 90 WpBase::operator=(rhs); in operator =() 91 pInterface = rhs.pInterface; in operator =() 95 WpOLEBase<T>& operator=(T* rhs) in operator =() argument 97 WpBase::operator=(rhs); in operator =() 98 pInterface = rhs.pInterface; in operator =() 146 WpOLECollection(const WpOLECollection& rhs){operator=(rhs);} in WpOLECollection() argument 147 inline WpOLECollection& operator=(const WpOLECollection& rhs) in operator =() argument [all …]
|
| H A D | Awrapadox.hxx | 84 WpADOView(const WpADOView& rhs){operator=(rhs);} in WpADOView() argument 86 inline WpADOView& operator=(const WpADOView& rhs) in operator =() argument 87 {WpOLEBase<ADOView>::operator=(rhs); return *this;} in operator =() 98 WpADOGroup(const WpADOGroup& rhs){operator=(rhs);} in WpADOGroup() argument 100 inline WpADOGroup& operator=(const WpADOGroup& rhs) in operator =() argument 101 {WpOLEBase<ADOGroup>::operator=(rhs); return *this;} in operator =() 122 WpADOUser(const WpADOUser& rhs){operator=(rhs);} in WpADOUser() argument 124 inline WpADOUser& operator=(const WpADOUser& rhs) in operator =() argument 125 {WpOLEBase<_ADOUser>::operator=(rhs); return *this;} in operator =()
|
| /trunk/main/comphelper/inc/comphelper/ |
| H A D | anycompare.hxx | 85 SCALAR lhs(0), rhs(0); in isLess() local 87 || !( _rhs >>= rhs ) in isLess() 90 return lhs < rhs; in isLess() 102 ::rtl::OUString lhs, rhs; in isLess() 104 || !( _rhs >>= rhs ) in isLess() 107 return lhs < rhs; in isLess() 124 ::rtl::OUString lhs, rhs; in isLess() 126 || !( _rhs >>= rhs ) in isLess() 129 return m_collator->compareString( lhs, rhs ) < 0; in isLess() 144 ::com::sun::star::uno::Type lhs, rhs; in isLess() [all …]
|
| H A D | stl_types.hxx | 81 …rator() (const ::rtl::OUString& lhs, const ::rtl::OUString& rhs) const { return lhs.equals( rhs );} in operator ()() 87 …const ::rtl::OUString& lhs, const ::rtl::OUString& rhs) const { return lhs.equalsIgnoreAsciiCase( … in operator ()() 103 sal_Bool operator() (const ::rtl::OUString& lhs, const ::rtl::OUString& rhs) const in operator ()() 105 return m_bCaseSensitive ? lhs.equals( rhs ) : lhs.equalsIgnoreAsciiCase( rhs ); in operator ()() 118 bool operator() (const ::rtl::OUString& lhs, const ::rtl::OUString& rhs) const in operator ()() 120 return !!(m_bCaseSensitive ? lhs.equals( rhs ) : lhs.equalsIgnoreAsciiCase( rhs )); in operator ()() 130 …bool operator() (const ::com::sun::star::beans::PropertyValue& lhs, const ::rtl::OUString& rhs) co… in operator ()() 132 return !!(lhs.Name == rhs); in operator ()() 161 …un::star::uno::Reference< IAFCE >& lhs, const ::com::sun::star::uno::Reference< IAFCE >& rhs) const in operator ()() 163 return lhs.get() < rhs.get(); in operator ()()
|
| H A D | property.hxx | 52 …e bool operator()( const ::com::sun::star::beans::Property& lhs, const ::rtl::OUString& rhs ) const in operator ()() 54 return lhs.Name.compareTo(rhs) < 0; in operator ()() 57 …e bool operator()( const ::rtl::OUString& lhs, const ::com::sun::star::beans::Property& rhs ) const in operator ()() 59 return lhs.compareTo(rhs.Name) < 0; in operator ()() 78 …e bool operator()( const ::com::sun::star::beans::Property& lhs, const ::rtl::OUString& rhs ) const in operator ()() 80 return lhs.Name.compareTo(rhs) == 0; in operator ()() 83 …e bool operator()( const ::rtl::OUString& lhs, const ::com::sun::star::beans::Property& rhs ) const in operator ()() 85 return lhs.compareTo(rhs.Name) == 0; in operator ()()
|
| /trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/ |
| H A D | Format.java | 411 Format rhs = new Format(); in isDefault() local 413 if (rhs.attributes!= attributes) in isDefault() 416 if (foreground!=rhs.foreground) in isDefault() 419 if (background!=rhs.background) in isDefault() 422 if (rhs.align!= align) in isDefault() 425 if (rhs.vertAlign!= vertAlign) in isDefault() 441 public boolean isSubset(Format rhs) { in isSubset() argument 442 if (rhs.getClass() != this.getClass()) in isSubset() 445 if (rhs.attributes!= attributes) in isSubset() 448 if (rhs.sizeInPoints != 0) { in isSubset() [all …]
|
| /trunk/main/store/inc/store/ |
| H A D | store.hxx | 58 inline OStoreStream (OStoreStream const & rhs) SAL_THROW(()) 59 : m_hImpl (rhs.m_hImpl) 67 inline OStoreStream & operator= (OStoreStream const & rhs) SAL_THROW(()) in operator =() argument 69 if (rhs.m_hImpl) in operator =() 70 (void) store_acquireHandle (rhs.m_hImpl); in operator =() 73 m_hImpl = rhs.m_hImpl; in operator =() 223 inline OStoreDirectory (OStoreDirectory const & rhs) SAL_THROW(()) 224 : m_hImpl (rhs.m_hImpl) 232 inline OStoreDirectory & operator= (OStoreDirectory const & rhs) SAL_THROW(()) in operator =() argument 234 if (rhs.m_hImpl) in operator =() [all …]
|
| /trunk/main/vcl/source/glyphs/ |
| H A D | graphite_adaptors.cxx | 151 GraphiteFontAdaptor::GraphiteFontAdaptor(const GraphiteFontAdaptor &rhs) throw() in GraphiteFontAdaptor() argument 152 : Font(rhs), in GraphiteFontAdaptor() 153 mrFont (rhs.mrFont), maFontProperties(rhs.maFontProperties), in GraphiteFontAdaptor() 154 mnDpiX(rhs.mnDpiX), mnDpiY(rhs.mnDpiY), in GraphiteFontAdaptor() 155 mfAscent(rhs.mfAscent), mfDescent(rhs.mfDescent), mfEmUnits(rhs.mfEmUnits), in GraphiteFontAdaptor() 158 if (rhs.mpFeatures) mpFeatures = new grutils::GrFeatureParser(*(rhs.mpFeatures)); in GraphiteFontAdaptor()
|
| /trunk/main/connectivity/source/drivers/file/ |
| H A D | FNumericFunctions.cxx | 60 ORowSetValue OOp_Mod::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const in operate() 62 if ( lhs.isNull() || rhs.isNull() ) in operate() 65 return fmod((double)lhs,(double)rhs); in operate() 148 ORowSetValue OOp_Pow::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const in operate() 150 if ( lhs.isNull() || rhs.isNull() ) in operate() 153 return pow((double)lhs,(double)rhs); in operate() 220 ORowSetValue OOp_ATan2::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const in operate() 222 if ( lhs.isNull() || rhs.isNull() ) in operate() 225 return atan2((double)lhs,(double)rhs); in operate()
|
| H A D | FStringFunctions.cxx | 208 ORowSetValue OOp_Repeat::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const in operate() 211 if ( lhs.isNull() || rhs.isNull() ) in operate() 215 sal_Int32 nCount = rhs; in operate() 237 ORowSetValue OOp_Left::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const in operate() 240 if ( lhs.isNull() || rhs.isNull() ) in operate() 244 sal_Int32 nCount = rhs; in operate() 250 ORowSetValue OOp_Right::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const in operate() 253 if ( lhs.isNull() || rhs.isNull() ) in operate() 256 sal_Int32 nCount = rhs; in operate()
|
| /trunk/main/svx/inc/svx/ |
| H A D | xmlexchg.hxx | 59 inline OXFormsDescriptor( const OXFormsDescriptor &rhs ) { *this=rhs; } in OXFormsDescriptor() 60 inline OXFormsDescriptor &operator = ( const OXFormsDescriptor &rhs ) { in operator =() 61 szName = rhs.szName; in operator =() 62 szServiceName = rhs.szServiceName; in operator =() 63 xPropSet = rhs.xPropSet; in operator =() 87 OXFormsTransferable( const OXFormsDescriptor &rhs );
|
| /trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ |
| H A D | FontDescription.java | 155 public boolean compareTo(FontDescription rhs) { in compareTo() argument 158 EndianConverter.readShort(rhs.icvFore)) in compareTo() 162 EndianConverter.readShort(rhs.dwHeight)) in compareTo() 165 if (this.getFont() != rhs.getFont()) in compareTo() 168 if (this.isBold() != rhs.isBold()) in compareTo() 171 if (this.isUnderline() != rhs.isUnderline()) in compareTo() 174 if (this.isItalic() != rhs.isItalic()) in compareTo()
|
| /trunk/main/dbaccess/source/ui/relationdesign/ |
| H A D | RTableConnectionData.cxx | 256 bool operator==(const ORelationTableConnectionData& lhs, const ORelationTableConnectionData& rhs) in operator ==() argument 258 bool bEqual = (lhs.m_nUpdateRules == rhs.m_nUpdateRules) in operator ==() 259 && (lhs.m_nDeleteRules == rhs.m_nDeleteRules) in operator ==() 260 && (lhs.m_nCardinality == rhs.m_nCardinality) in operator ==() 261 && (lhs.getReferencingTable() == rhs.getReferencingTable()) in operator ==() 262 && (lhs.getReferencedTable() == rhs.getReferencedTable()) in operator ==() 263 && (lhs.m_aConnName == rhs.m_aConnName) in operator ==() 264 && (lhs.m_vConnLineData.size() == rhs.m_vConnLineData.size()); in operator ==() 272 if ( *(rhs.m_vConnLineData[i]) != **aIter ) in operator ==()
|
| /trunk/main/forms/source/component/ |
| H A D | GroupManager.cxx | 88 sal_Bool operator() (const OGroupCompAcc& lhs, const OGroupCompAcc& rhs) const in operator ()() 92 < reinterpret_cast<sal_Int64>(rhs.m_xComponent.get()); in operator ()() 144 sal_Bool operator() (const OGroupComp& lhs, const OGroupComp& rhs) const in operator ()() 148 if (lhs.m_nTabIndex == rhs.GetTabIndex()) in operator ()() 149 bResult = lhs.m_nPos < rhs.GetPos(); in operator ()() 150 else if (lhs.m_nTabIndex && rhs.GetTabIndex()) in operator ()() 151 bResult = lhs.m_nTabIndex < rhs.GetTabIndex(); in operator ()() 244 sal_Bool operator() (const OGroup& lhs, const OGroup& rhs) const in operator ()() 246 return lhs.m_aGroupName < rhs.m_aGroupName; in operator ()()
|