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

  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.cpp 76 , dashArray(SVGRenderStyle::initialStrokeDashArray())
87 , dashArray(other.dashArray)
99 && dashArray == other.dashArray;
SVGRenderStyle.cpp 174 || stroke->dashArray != other->stroke->dashArray
SVGRenderStyle.h 173 if (!(stroke->dashArray == obj))
174 stroke.access()->dashArray = obj;
299 Vector<SVGLength> strokeDashArray() const { return stroke->dashArray; }
SVGRenderStyleDefs.h 132 Vector<SVGLength> dashArray;
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.cpp 340 DashArray dashArray;
343 dashArray.append((*it).value(lengthContext));
345 context->setLineDash(dashArray, svgStyle->strokeDashOffset().value(lengthContext));
SVGRenderTreeAsText.cpp 229 static TextStream& operator<<(TextStream& ts, const DashArray& a)
232 DashArray::const_iterator end = a.end();
233 for (DashArray::const_iterator it = a.begin(); it != end; ++it) {
342 DashArray dashArray;
345 dashArray.append((*it).value(element));
353 if (!dashArray.isEmpty())
354 writeNameValuePair(ts, "dash array", dashArray);
  /external/skia/include/gpu/gl/
GrGLFunctions.h 187 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLPathDashArrayProc)(GrGLuint path, GrGLsizei dashCount, const GrGLfloat *dashArray);
209 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLGetPathDashArrayProc)(GrGLuint name, GrGLfloat *dashArray);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 25 #include "DashArray.h"
123 DashArray strokeDashArray;
586 void PainterOpenVG::setLineDash(const DashArray& dashArray, float dashOffset)
591 m_state->strokeDashArray = dashArray;
    [all...]

Completed in 76 milliseconds