/aoo41x/main/canvas/source/directx/ |
H A D | dx_config.hxx | 54 bool operator<( const DeviceInfo& rRHS ) const in operator <() 56 return nVendorId != rRHS.nVendorId ? nVendorId < rRHS.nVendorId : in operator <() 57 (nDeviceId != rRHS.nDeviceId ? nDeviceId < rRHS.nDeviceId : in operator <() 58 … (nDeviceSubSysId != rRHS.nDeviceSubSysId ? nDeviceSubSysId < rRHS.nDeviceSubSysId : in operator <() 59 … (nDeviceRevision != rRHS.nDeviceRevision ? nDeviceRevision < rRHS.nDeviceRevision : in operator <() 60 (nDriverId != rRHS.nDriverId ? nDriverId < rRHS.nDriverId : in operator <() 61 … (nDriverVersion != rRHS.nDriverVersion ? nDriverVersion < rRHS.nDriverVersion : in operator <() 62 … (nDriverSubVersion != rRHS.nDriverSubVersion ? nDriverSubVersion < rRHS.nDriverSubVersion : in operator <() 63 … (nDriverBuildId != rRHS.nDriverBuildId ? nDriverBuildId < rRHS.nDriverBuildId : false))))))); in operator <()
|
H A D | dx_winstuff.hxx | 163 COMReference& operator=( const COMReference& rRHS ) in operator =() argument 165 COMReference aTmp(rRHS); in operator =()
|
/aoo41x/main/o3tl/qa/ |
H A D | cow_wrapper_clients.cxx | 36 … bool operator==( const cow_wrapper_client2_impl& rRHS ) const { return mnValue == rRHS.mnValue; } in operator ==() 37 … bool operator!=( const cow_wrapper_client2_impl& rRHS ) const { return mnValue != rRHS.mnValue; } in operator !=() 38 bool operator<( const cow_wrapper_client2_impl& rRHS ) const { return mnValue < rRHS.mnValue; } in operator <() 96 bool cow_wrapper_client2::operator==( const cow_wrapper_client2& rRHS ) const in operator ==() 98 return maImpl == rRHS.maImpl; in operator ==() 100 bool cow_wrapper_client2::operator!=( const cow_wrapper_client2& rRHS ) const in operator !=() 102 return maImpl != rRHS.maImpl; in operator !=() 106 return maImpl < rRHS.maImpl; in operator <() 165 return maImpl == rRHS.maImpl; in operator ==() 169 return maImpl != rRHS.maImpl; in operator !=() [all …]
|
H A D | cow_wrapper_clients.hxx | 53 bool operator==( const cow_wrapper_client1& rRHS ) const { return maImpl == rRHS.maImpl; } in operator ==() 54 bool operator!=( const cow_wrapper_client1& rRHS ) const { return maImpl != rRHS.maImpl; } in operator !=() 55 bool operator<( const cow_wrapper_client1& rRHS ) const { return maImpl < rRHS.maImpl; } in operator <() 85 bool operator==( const cow_wrapper_client2& rRHS ) const; 86 bool operator!=( const cow_wrapper_client2& rRHS ) const; 87 bool operator<( const cow_wrapper_client2& rRHS ) const; 114 bool operator==( const cow_wrapper_client3& rRHS ) const; 115 bool operator!=( const cow_wrapper_client3& rRHS ) const; 116 bool operator<( const cow_wrapper_client3& rRHS ) const;
|
/aoo41x/main/slideshow/source/engine/ |
H A D | color.cxx | 281 return HSLColor( rLHS.getHue() + rRHS.getHue(), in operator +() 288 return HSLColor( rLHS.getHue() * rRHS.getHue(), in operator *() 295 return HSLColor( nFactor * rRHS.getHue(), in operator *() 296 nFactor * rRHS.getSaturation(), in operator *() 297 nFactor * rRHS.getLuminance() ); in operator *() 439 return RGBColor( rLHS.getRed() + rRHS.getRed(), in operator +() 440 rLHS.getGreen() + rRHS.getGreen(), in operator +() 446 return RGBColor( rLHS.getRed() * rRHS.getRed(), in operator *() 453 return RGBColor( nFactor * rRHS.getRed(), in operator *() 454 nFactor * rRHS.getGreen(), in operator *() [all …]
|
H A D | expressionnodefactory.cxx | 233 … const ExpressionNodeSharedPtr& rRHS ) in createPlusExpression() argument 235 return ExpressionNodeSharedPtr( new PlusExpression(rLHS, rRHS) ); in createPlusExpression() 239 … const ExpressionNodeSharedPtr& rRHS ) in createMinusExpression() argument 241 return ExpressionNodeSharedPtr( new MinusExpression(rLHS, rRHS) ); in createMinusExpression() 245 … const ExpressionNodeSharedPtr& rRHS ) in createMultipliesExpression() argument 247 return ExpressionNodeSharedPtr( new MultipliesExpression(rLHS, rRHS) ); in createMultipliesExpression() 251 … const ExpressionNodeSharedPtr& rRHS ) in createDividesExpression() argument 253 return ExpressionNodeSharedPtr( new DividesExpression(rLHS, rRHS) ); in createDividesExpression()
|
H A D | eventmultiplexer.cxx | 69 weak_ptr<T> const& rRHS ) in operator ==() argument 71 return !(rLHS<rRHS) && !(rRHS<rLHS); in operator ==() 95 bool operator<( PrioritizedHandlerEntry const& rRHS ) const in operator <() 99 return mnPrio > rRHS.mnPrio; in operator <() 103 bool operator==( PrioritizedHandlerEntry const& rRHS ) const in operator ==() 106 return mpHandler == rRHS.mpHandler; in operator ==()
|
/aoo41x/main/basegfx/source/tools/ |
H A D | b2dclipstate.cxx | 112 bool operator==(const ImplB2DClipState& rRHS) const in operator ==() 114 return maPendingPolygons == rRHS.maPendingPolygons in operator ==() 115 && maPendingRanges == rRHS.maPendingRanges in operator ==() 116 && maClipPoly == rRHS.maClipPoly in operator ==() 117 && mePendingOps == rRHS.mePendingOps; in operator ==() 525 mpImpl = rRHS.mpImpl; in operator =() 554 bool B2DClipState::operator==(const B2DClipState& rRHS) const in operator ==() 556 if(mpImpl.same_object(rRHS.mpImpl)) in operator ==() 559 return ((*mpImpl) == (*rRHS.mpImpl)); in operator ==() 562 bool B2DClipState::operator!=(const B2DClipState& rRHS) const in operator !=() [all …]
|
/aoo41x/main/slideshow/source/inc/ |
H A D | expressionnodefactory.hxx | 53 … const ExpressionNodeSharedPtr& rRHS ); 55 … const ExpressionNodeSharedPtr& rRHS ); 57 … const ExpressionNodeSharedPtr& rRHS ); 59 … const ExpressionNodeSharedPtr& rRHS );
|
H A D | hyperlinkarea.hxx | 85 const boost::shared_ptr< HyperlinkArea >& rRHS) const in operator ()() 88 const double nPrioR( rRHS->getHyperlinkPriority() ); in operator ()() 91 return nPrioL == nPrioR ? rLHS.get() < rRHS.get() : nPrioL < nPrioR; in operator ()()
|
H A D | hslcolor.hxx | 103 HSLColor operator+( const HSLColor& rLHS, const HSLColor& rRHS ); 104 HSLColor operator*( const HSLColor& rLHS, const HSLColor& rRHS ); 105 HSLColor operator*( double nFactor, const HSLColor& rRHS );
|
H A D | rgbcolor.hxx | 107 RGBColor operator+( const RGBColor& rLHS, const RGBColor& rRHS ); 108 RGBColor operator*( const RGBColor& rLHS, const RGBColor& rRHS ); 109 RGBColor operator*( double nFactor, const RGBColor& rRHS );
|
H A D | shape.hxx | 249 bool operator()(const ShapeSharedPtr& rLHS, const ShapeSharedPtr& rRHS) const in operator ()() 251 return compare(rLHS.get(),rRHS.get()); in operator ()()
|
/aoo41x/main/canvas/inc/canvas/base/ |
H A D | sprite.hxx | 104 const Sprite::Reference& rRHS ) in operator ()() 107 const double nPrioR( rRHS->getPriority() ); in operator ()() 110 return nPrioL == nPrioR ? rLHS.get() < rRHS.get() : nPrioL < nPrioR; in operator ()()
|
/aoo41x/main/vcl/source/helper/ |
H A D | canvastools.cxx | 203 const rendering::IntegerBitmapLayout& rRHS ) in operator ==() argument 206 rLHS.ScanLineBytes == rRHS.ScanLineBytes && in operator ==() 207 rLHS.ScanLineStride == rRHS.ScanLineStride && in operator ==() 208 rLHS.PlaneStride == rRHS.PlaneStride && in operator ==() 209 rLHS.ColorSpace == rRHS.ColorSpace && in operator ==() 210 rLHS.Palette == rRHS.Palette && in operator ==() 211 rLHS.IsMsbFirst == rRHS.IsMsbFirst; in operator ==()
|
/aoo41x/main/vcl/test/ |
H A D | canvasbitmaptest.cxx | 93 bool operator==( const RGBColor& rLHS, const ARGBColor& rRHS ) in operator ==() argument 95 return rLHS.Red == rRHS.Red && rLHS.Green == rRHS.Green && rLHS.Blue == rRHS.Blue; in operator ==() 97 bool operator==( const ARGBColor& rLHS, const RGBColor& rRHS ) in operator ==() argument 99 return rLHS.Red == rRHS.Red && rLHS.Green == rRHS.Green && rLHS.Blue == rRHS.Blue; in operator ==()
|
/aoo41x/main/canvas/inc/canvas/ |
H A D | canvastools.hxx | 70 const RenderState& rRHS ); 73 const ViewState& rRHS ); 643 const MapEntry& rRHS ) in mapComparator() argument 646 rRHS.maKey ) < 0; in mapComparator()
|
/aoo41x/main/basegfx/source/polygon/ |
H A D | b2dpolypolygonrasterconverter.cxx | 372 const B2DPolyPolygonRasterConverter::Vertex& rRHS ) in operator ()() 374 return rLHS.aP1.getX() < rRHS.aP1.getX(); in operator ()() 498 bool operator()( const ImplLineNode& rLHS, const ImplLineNode& rRHS ) in operator ()() 500 return rLHS.getXPos() < rRHS.getXPos(); in operator ()()
|
/aoo41x/main/basegfx/source/range/ |
H A D | b2drangeclipper.cxx | 125 …bool operator<( const ActiveEdge& rRHS ) const { return mfInvariantCoord < rRHS.mfInvariantCoord; } in operator <() 226 bool operator<( const SweepLineEvent& rRHS ) const { return mfPos < rRHS.mfPos; } in operator <()
|
H A D | b2dpolyrange.cxx | 80 bool operator==(const ImplB2DPolyRange& rRHS) const in operator ==() 82 return maRanges == rRHS.maRanges && maOrient == rRHS.maOrient; in operator ==()
|
/aoo41x/main/animations/source/animcore/ |
H A D | targetpropertiescreator.cxx | 140 bool operator==( const ShapeHashKey& rRHS ) const in operator ==() 142 return mxRef == rRHS.mxRef && mnParagraphIndex == rRHS.mnParagraphIndex; in operator ==()
|
/aoo41x/main/canvas/source/tools/ |
H A D | propertysethelper.cxx | 57 const PropertySetHelper::MapType::MapEntry& rRHS ) in operator ()() 60 rRHS.maKey ) < 0; in operator ()()
|
/aoo41x/main/basebmp/test/ |
H A D | bmpdemo.cxx | 874 BitmapColor const& rRHS ) const in norm() 878 vigra::sq(rLHS.GetRed()-rRHS.GetRed()) + in norm() 879 vigra::sq(rLHS.GetGreen()-rRHS.GetGreen()) + in norm() 880 vigra::sq(rLHS.GetBlue()-rRHS.GetBlue()) ); in norm()
|
/aoo41x/main/slideshow/source/engine/slide/ |
H A D | layermanager.cxx | 46 slideshow::internal::LayerWeakPtr const& rRHS ) in operator !=() argument 48 return (rLHS<rRHS) || (rRHS<rLHS); in operator !=()
|
/aoo41x/main/basebmp/inc/basebmp/ |
H A D | polypolygonrenderer.hxx | 104 const Vertex& rRHS ) const in operator ()() 106 return rLHS.mnX < rRHS.mnX; in operator ()()
|