/trunk/main/store/source/ |
H A D | storbase.hxx | 114 T tmp = lhs; lhs = rhs; rhs = tmp; in swap() 219 m_nMagic = rhs.m_nMagic; in operator =() 269 m_nUsed (rhs.m_nUsed) in OStorePageDescriptor() 274 m_nAddr = rhs.m_nAddr; in operator =() 275 m_nSize = rhs.m_nSize; in operator =() 276 m_nUsed = rhs.m_nUsed; in operator =() 329 : m_nLow (rhs.m_nLow), m_nHigh (rhs.m_nHigh) in OStorePageKey() 334 m_nLow = rhs.m_nLow; in operator =() 335 m_nHigh = rhs.m_nHigh; in operator =() 379 : m_nAddr (rhs.m_nAddr) in OStorePageLink() [all …]
|
H A D | storbios.cxx | 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() 88 m_aUnused (rhs.m_aUnused) in OStoreSuperBlock() 93 m_aGuard = rhs.m_aGuard; in operator =() 94 m_aDescr = rhs.m_aDescr; in operator =() 95 m_nMarked = rhs.m_nMarked; in operator =() 96 m_aMarked = rhs.m_aMarked; in operator =() 97 m_nUnused = rhs.m_nUnused; 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 | 106 return rhs.y == y; in equal() 111 return y < rhs.y; in less() 191 return less(rhs); in operator <() 206 return !less(rhs); in operator >=() 211 return y - rhs.y; in operator -() 318 return rhs.data_ == data_ && rhs.remainder_ == remainder_; in equal() 422 return less(rhs); in operator <() 437 return !less(rhs); in operator >=() 528 return (x == rhs.x) && (y == rhs.y); in equal() 544 return equal(rhs); in operator ==() [all …]
|
H A D | pixeliterator.hxx | 53 return rhs.y == y; in equal() 58 return y < rhs.y; in less() 128 return equal( rhs ); in operator ==() 133 return !equal( rhs ); in operator !=() 138 return less(rhs); in operator <() 153 return !less(rhs); in operator >=() 158 return y - rhs.y; in operator -() 223 return (x == rhs.x) && (y == rhs.y); in equal() 249 return equal(rhs); in operator ==() 254 return !equal(rhs); in operator !=() [all …]
|
H A D | compositeiterator.hxx | 56 { return *mpVal1==*rhs.mpVal1 && *mpVal2==*rhs.mpVal2; } in operator ==() 59 { return *mpVal1!=*rhs.mpVal1 || *mpVal2!=*rhs.mpVal2; } in operator !=() 62 { return *mpVal1<*rhs.mpVal1 && *mpVal2<*rhs.mpVal2; } in operator <() 65 { return *mpVal1<=*rhs.mpVal1 && *mpVal2<=*rhs.mpVal2; } in operator <=() 68 { return *mpVal1>*rhs.mpVal1 && *mpVal2>*rhs.mpVal2; } in operator >() 71 { return *mpVal1>=*rhs.mpVal1 && *mpVal2>=*rhs.mpVal2; } in operator >=() 74 { return *mpVal1 - *rhs.mpVal1; } in operator -() 103 return (maIter1 == rhs.maIter1) && (maIter2 == rhs.maIter2); in equal() 119 return equal(rhs); in operator ==() 124 return !equal(rhs); 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 ==() 83 { return current_ != rhs.current_; } in operator !=() 85 bool operator<(StridedArrayIterator const & rhs) const in operator <() 86 { return *this - rhs < 0; } in operator <() 89 { return *this - rhs <= 0; } in operator <=() 91 bool operator>(StridedArrayIterator const & rhs) const in operator >() 92 { return *this - rhs > 0; } in operator >() [all …]
|
/trunk/main/basebmp/test/ |
H A D | bmpdemo.cxx | 305 return rhs.y == y; in equal() 310 return y < rhs.y; in less() 390 return less(rhs); in operator <() 395 return !less(rhs); in operator <=() 410 return y - rhs.y; in operator -() 527 return rhs.data_ == data_ && rhs.remainder_ == remainder_; in equal() 633 return less(rhs); in operator <() 638 return !less(rhs); in operator <=() 737 return (x == rhs.x) && (y == rhs.y); in equal() 753 return equal(rhs); 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() 97 if ( lhs.Day < rhs.Day ) in isLess() 111 Time lhs, rhs; in isLess() local 113 || !( _rhs >>= rhs ) in isLess() 146 DateTime lhs, rhs; in isLess() local 148 || !( _rhs >>= rhs ) in isLess() 162 if ( lhs.Day < rhs.Day ) in isLess() [all …]
|
/trunk/main/store/workben/ |
H A D | t_page.cxx | 43 T tmp = rhs; rhs = lhs; lhs = tmp; in swap() 108 : m_pCount (rhs.m_pCount) in SharedCount() 116 SharedCount tmp(rhs); in operator =() 273 : m_cache (rhs.m_cache), in PageAllocator() 274 m_refcount (rhs.m_refcount) in PageAllocator() 281 PageAllocator tmp (rhs); in operator =() 341 PageHolder tmp (rhs); in operator =() 398 : m_xPage (rhs.m_xPage) in PageHolderObject() 922 set (rhs.release()); in ResourceHolder() 926 reset (rhs.release()); in operator =() [all …]
|
/trunk/main/connectivity/source/inc/ado/ |
H A D | Awrapado.hxx | 63 WpADOConnection(const WpADOConnection& rhs){operator=(rhs);} in WpADOConnection() argument 173 WpADOCommand(const WpADOCommand& rhs){operator=(rhs);} in WpADOCommand() argument 175 WpADOCommand& operator=(const WpADOCommand& rhs) in operator =() argument 213 WpADOError(const WpADOError& rhs){operator=(rhs);} in WpADOError() argument 215 WpADOError& operator=(const WpADOError& rhs) in operator =() argument 240 WpADOField(const WpADOField& rhs){operator=(rhs);} in WpADOField() argument 242 WpADOField& operator=(const WpADOField& rhs) in operator =() argument 288 WpADOProperty(const WpADOProperty& rhs){operator=(rhs);} in WpADOProperty() argument 310 WpADORecordset(const WpADORecordset& rhs){operator=(rhs);} in WpADORecordset() argument 313 WpOLEBase<ADORecordset>::operator=(rhs); in operator =() [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 148 {WpOLEBase<Ts>::operator=(rhs); return *this;}; in operator =() [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() 146 || !( _rhs >>= rhs ) in isLess() 166 sal_Int32 lhs(0), rhs(0); in isLess() local [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 …inline bool operator()( const ::com::sun::star::beans::Property& lhs, const ::rtl::OUString& rhs )… in operator ()() 54 return lhs.Name.compareTo(rhs) < 0; in operator ()() 57 …inline bool operator()( const ::rtl::OUString& lhs, const ::com::sun::star::beans::Property& rhs )… in operator ()() 59 return lhs.compareTo(rhs.Name) < 0; in operator ()() 78 …inline bool operator()( const ::com::sun::star::beans::Property& lhs, const ::rtl::OUString& rhs )… in operator ()() 80 return lhs.Name.compareTo(rhs) == 0; in operator ()() 83 …inline bool operator()( const ::rtl::OUString& lhs, const ::com::sun::star::beans::Property& rhs )… 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 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() 448 if (rhs.sizeInPoints != 0) { in isSubset() 453 if (fontName!=rhs.fontName) in isSubset() 456 if (foreground!=rhs.foreground) in isSubset() 459 if (background!=rhs.background) in isSubset() 462 if (rhs.align!= align) in isSubset() [all …]
|
/trunk/main/store/inc/store/ |
H A D | store.hxx | 59 : m_hImpl (rhs.m_hImpl) 69 if (rhs.m_hImpl) in operator =() 70 (void) store_acquireHandle (rhs.m_hImpl); in operator =() 73 m_hImpl = rhs.m_hImpl; in operator =() 224 : m_hImpl (rhs.m_hImpl) 234 if (rhs.m_hImpl) in operator =() 235 (void) store_acquireHandle (rhs.m_hImpl); in operator =() 238 m_hImpl = rhs.m_hImpl; in operator =() 387 : m_hImpl (rhs.m_hImpl) 397 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/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 ()()
|
/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 ==()
|