Home
last modified time | relevance | path

Searched refs:strokeDashArray (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/openvg/
DPainterOpenVG.cpp123 DashArray strokeDashArray; member
190 strokeDashArray = other->strokeDashArray; in copyPaintState()
351 if (!strokeDashArray.size()) { in applyStrokeStyle()
355 Vector<VGfloat> vgFloatArray(strokeDashArray.size()); in applyStrokeStyle()
356 for (int i = 0; i < strokeDashArray.size(); ++i) in applyStrokeStyle()
357 vgFloatArray[i] = strokeDashArray[i]; in applyStrokeStyle()
591 m_state->strokeDashArray = dashArray; in setLineDash()
/external/webkit/Source/WebCore/css/
DSVGCSSComputedStyleDeclaration.cpp154 return strokeDashArrayToCSSValueList(svgStyle->strokeDashArray()); in getSVGPropertyCSSValue()
DSVGCSSStyleSelector.cpp256 HANDLE_INHERIT_AND_INITIAL(strokeDashArray, StrokeDashArray) in applySVGProperty()
/external/webkit/Source/WebCore/rendering/svg/
DSVGRenderSupport.cpp336 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray(); in applyStrokeStyleToContext()
DSVGRenderTreeAsText.cpp340 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray(); in writeStyle()
/external/webkit/Source/WebCore/rendering/style/
DSVGRenderStyle.h299 Vector<SVGLength> strokeDashArray() const { return stroke->dashArray; } in strokeDashArray() function
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0685245 (WebCore::SVGRenderStyle::strokeDashArray): Return Vector<SVGLength>.