HomeSort by relevance Sort by last modified time
    Searched refs:addRoundedRect (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/
Path.h 139 void addRoundedRect(const FloatRect&, const FloatSize& roundingRadii);
140 void addRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
141 void addRoundedRect(const RoundedIntRect&);
Path.cpp 112 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& roundingRadii)
155 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius)
191 void Path::addRoundedRect(const RoundedIntRect& r)
193 addRoundedRect(r.rect(), r.radii().topLeft(), r.radii().topRight(), r.radii().bottomLeft(), r.radii().bottomRight());
ShadowBlur.cpp 516 path.addRoundedRect(shadowedRect, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
557 path.addRoundedRect(holeRect, holeRadii.topLeft(), holeRadii.topRight(), holeRadii.bottomLeft(), holeRadii.bottomRight());
636 path.addRoundedRect(templateHole, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
698 path.addRoundedRect(templateShadow, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
    [all...]
GraphicsContext.cpp 570 path.addRoundedRect(rect);
580 path.addRoundedRect(rect);
634 path.addRoundedRect(roundedHoleRect);
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ContextShadowCairo.cpp 141 path.addRoundedRect(shadowRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
251 path.addRoundedRect(templateRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
275 path.addRoundedRect(shadowRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
GraphicsContextCairo.cpp 689 path.addRoundedRect(rects[i], FloatSize(radius, radius));
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.cpp 140 path.addRoundedRect(pathRect, FloatSize(radius, radius));
  /external/webkit/Source/WebCore/rendering/
RenderEmbeddedObject.cpp 209 path.addRoundedRect(replacementTextRect, FloatSize(replacementTextRoundedRectRadius, replacementTextRoundedRectRadius));
RenderBoxModelObject.cpp     [all...]
  /external/webkit/Source/WebCore/svg/
SVGRectElement.cpp 203 path.addRoundedRect(rect, FloatSize(rxValue, ryValue));
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 777 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
799 path.addRoundedRect(roundedHoleRect);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 750 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
859 tmpPath.addRoundedRect(rect, radius, radius);
    [all...]

Completed in 953 milliseconds