HomeSort by relevance Sort by last modified time
    Searched defs:RenderSVGShape (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGShape.h 45 class RenderSVGShape : public RenderSVGModelObject {
47 explicit RenderSVGShape(SVGGraphicsElement*);
48 RenderSVGShape(SVGGraphicsElement*, Path*, bool);
49 virtual ~RenderSVGShape();
90 virtual const char* renderName() const { return "RenderSVGShape"; }
127 inline RenderSVGShape* toRenderSVGShape(RenderObject* object)
130 return static_cast<RenderSVGShape*>(object);
133 inline const RenderSVGShape* toRenderSVGShape(const RenderObject* object)
136 return static_cast<const RenderSVGShape*>(object);
140 void toRenderSVGShape(const RenderSVGShape*);
    [all...]
RenderSVGShape.cpp 30 #include "core/rendering/svg/RenderSVGShape.h"
48 RenderSVGShape::RenderSVGShape(SVGGraphicsElement* node)
56 RenderSVGShape::~RenderSVGShape()
60 void RenderSVGShape::updateShapeFromElement()
64 ASSERT(RenderSVGShape::isEmpty());
74 bool RenderSVGShape::isEmpty() const
79 void RenderSVGShape::fillShape(GraphicsContext* context) const
84 void RenderSVGShape::strokeShape(GraphicsContext* context) cons
    [all...]

Completed in 43 milliseconds