Lines Matching refs:rCmp
1655 int SfxItemSet::operator==(const SfxItemSet &rCmp) const in operator ==()
1658 DBG_CHKOBJ(&rCmp, SfxItemSet, DbgCheckItemSet); in operator ==()
1661 if ( _pParent != rCmp._pParent || in operator ==()
1662 _pPool != rCmp._pPool || in operator ==()
1663 Count() != rCmp.Count() ) in operator ==()
1668 sal_uInt16 nCount2 = rCmp.TotalCount(); in operator ==()
1674 if ( _pWhichRanges[nRange] != rCmp._pWhichRanges[nRange] || in operator ==()
1675 _pWhichRanges[nRange+1] != rCmp._pWhichRanges[nRange+1] ) in operator ==()
1687 rCmp.GetItemState( nWh, sal_False, &pItem2 ) || in operator ==()
1699 if ( 0 == memcmp( _aItems, rCmp._aItems, nCount1 * sizeof(_aItems[0]) ) ) in operator ==()
1704 const SfxPoolItem **ppItem2 = (const SfxPoolItem**) rCmp._aItems; in operator ==()
2159 sal_Bool SfxItemSet::QuickCompare( SfxItemSet & rCmp) in QuickCompare() argument
2161 if ( _pParent != rCmp._pParent || in QuickCompare()
2162 _pPool != rCmp._pPool || in QuickCompare()
2163 Count() != rCmp.Count() ) in QuickCompare()
2166 if ((0==Count())&&(0==rCmp.Count())) in QuickCompare()
2173 if (!rCmp.IsValidateHashKey()) in QuickCompare()
2175 rCmp.UpdateHashKey(); in QuickCompare()
2179 if (GetHashKey() != rCmp.GetHashKey()) in QuickCompare()
2182 if ( 0 == memcmp( _aItems, rCmp._aItems, TotalCount() * sizeof(_aItems[0]) ) ) in QuickCompare()