Searched defs:RoundedRect (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRoundedRect.h38 class PLATFORM_EXPORT RoundedRect { class in namespace:WebCore
78 explicit RoundedRect(const IntRect&, const Radii& = Radii());
79 RoundedRect(int x, int y, int width, int height);
80 RoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
114 inline bool operator==(const RoundedRect::Radii& a, const RoundedRect::Radii& b)
119 inline bool operator!=(const RoundedRect::Radii& a, const RoundedRect::Radii& b)
124 inline bool operator==(const RoundedRect& a, const RoundedRect
[all...]
H A DRoundedRect.cpp29 #include "platform/geometry/RoundedRect.h"
38 bool RoundedRect::Radii::isZero() const
43 void RoundedRect::Radii::scale(float factor)
64 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth)
84 void RoundedRect::inflateWithRadii(int size)
99 void RoundedRect::Radii::includeLogicalEdges(const RoundedRect::Radii& edges, bool isHorizontal, bool includeLogicalLeftEdge, bool includeLogicalRightEdge)
118 void RoundedRect::Radii::excludeLogicalEdges(bool isHorizontal, bool excludeLogicalLeftEdge, bool excludeLogicalRightEdge)
137 RoundedRect::RoundedRect(in function in class:WebCore::RoundedRect
142 RoundedRect::RoundedRect(const IntRect& rect, const Radii& radii) function in class:WebCore::RoundedRect
148 RoundedRect::RoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight) function in class:WebCore::RoundedRect
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp432 RoundedRect RenderBoxModelObject::getBackgroundRoundedRect(const LayoutRect& borderRect, InlineFlowBox* box, LayoutUnit inlineBoxWidth, LayoutUnit inlineBoxHeight,
436 RoundedRect border = style()->getRoundedBorderFor(borderRect, renderView, includeLogicalLeftEdge, includeLogicalRightEdge);
438 RoundedRect segmentBorder = style()->getRoundedBorderFor(LayoutRect(0, 0, inlineBoxWidth, inlineBoxHeight), renderView, includeLogicalLeftEdge, includeLogicalRightEdge);
445 void RenderBoxModelObject::clipRoundedInnerRect(GraphicsContext * context, const LayoutRect& rect, const RoundedRect& clipRect)
453 RoundedRect::Radii topCornerRadii;
455 context->clipRoundedRect(RoundedRect(topCorner, topCornerRadii));
458 RoundedRect::Radii bottomCornerRadii;
460 context->clipRoundedRect(RoundedRect(bottomCorner, bottomCornerRadii));
465 RoundedRect::Radii topCornerRadii;
467 context->clipRoundedRect(RoundedRect(topCorne
2263 calculateAdjustedInnerBorder(const RoundedRect&innerBorder, BoxSide side) argument
[all...]

Completed in 142 milliseconds