Home
last modified time | relevance | path

Searched refs:addRoundedRect (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
DPath.h139 void addRoundedRect(const FloatRect&, const FloatSize& roundingRadii);
140 …void addRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRad…
141 void addRoundedRect(const RoundedIntRect&);
DPath.cpp112 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& roundingRadii) in addRoundedRect() function in WebCore::Path
155 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const FloatSize& t… in addRoundedRect() function in WebCore::Path
191 void Path::addRoundedRect(const RoundedIntRect& r) in addRoundedRect() function in WebCore::Path
193addRoundedRect(r.rect(), r.radii().topLeft(), r.radii().topRight(), r.radii().bottomLeft(), r.radi… in addRoundedRect()
DShadowBlur.cpp516 …path.addRoundedRect(shadowedRect, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bot… in drawRectShadowWithoutTiling()
557 …path.addRoundedRect(holeRect, holeRadii.topLeft(), holeRadii.topRight(), holeRadii.bottomLeft(), h… in drawInsetShadowWithoutTiling()
636 …path.addRoundedRect(templateHole, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bot… in drawInsetShadowWithTiling()
698 …path.addRoundedRect(templateShadow, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.b… in drawRectShadowWithTiling()
DGraphicsContext.cpp572 path.addRoundedRect(rect); in addRoundedRectClip()
582 path.addRoundedRect(rect); in clipOutRoundedRect()
636 path.addRoundedRect(roundedHoleRect); in fillRectWithRoundedHole()
/external/webkit/Source/WebCore/platform/graphics/cairo/
DContextShadowCairo.cpp141 …path.addRoundedRect(shadowRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius… in drawRectShadowWithoutTiling()
251 …path.addRoundedRect(templateRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadi… in drawRectShadow()
275 …path.addRoundedRect(shadowRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius… in drawRectShadow()
DGraphicsContextCairo.cpp689 path.addRoundedRect(rects[i], FloatSize(radius, radius)); in drawFocusRing()
1136 path.addRoundedRect(r, topLeft, topRight, bottomLeft, bottomRight); in fillRoundedRect()
/external/webkit/Source/WebKit2/UIProcess/
DFindIndicator.cpp140 path.addRoundedRect(pathRect, FloatSize(radius, radius)); in pathWithRoundedRect()
/external/webkit/Source/WebCore/svg/
DSVGRectElement.cpp203 path.addRoundedRect(rect, FloatSize(rxValue, ryValue)); in toPathData()
/external/webkit/Source/WebCore/rendering/
DRenderEmbeddedObject.cpp209 …path.addRoundedRect(replacementTextRect, FloatSize(replacementTextRoundedRectRadius, replacementTe… in getReplacementTextGeometry()
DRenderBoxModelObject.cpp1257 roundedPath.addRoundedRect(outerBorder); in paintBorderSides()
1414 path.addRoundedRect(outerBorder); in paintBorder()
1419 path.addRoundedRect(innerBorder); in paintBorder()
2184 path.addRoundedRect(border); in paintBoxShadow()
/external/webkit/Source/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp777 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight); in fillRoundedRect()
799 path.addRoundedRect(roundedHoleRect); in fillRectWithRoundedHole()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp750 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight); in fillRoundedRect()
859 tmpPath.addRoundedRect(rect, radius, radius); in drawFocusRing()
/external/webkit/Source/WebCore/
DChangeLog16748 (WebCore::Path::addRoundedRect):
16749 Add an overload of addRoundedRect() that takes a RoundedIntRect.
16768 We need to know when Path::addRoundedRect() will fail because
DChangeLog-2010-12-0635498 (WebCore::Path::addRoundedRect):