Searched defs:strokeData (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextState.h83 const StrokeData& strokeData() const { return m_strokeData; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGShape.cpp92 StrokeData strokeData; local
93 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
99 return usePath->strokeContains(nonScalingTransform.mapPoint(point), strokeData);
102 return m_path->strokeContains(point, strokeData);
386 StrokeData strokeData; local
387 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
392 FloatRect strokeBoundingRect = usePath->strokeBoundingRect(strokeData);
397 strokeBoundingBox.unite(path().strokeBoundingRect(strokeData));
H A DSVGRenderSupport.cpp340 void SVGRenderSupport::applyStrokeStyleToStrokeData(StrokeData* strokeData, const RenderStyle* style, const RenderObject* object) argument
342 ASSERT(strokeData);
351 strokeData->setThickness(svgStyle.strokeWidth()->value(lengthContext));
352 strokeData->setLineCap(svgStyle.capStyle());
353 strokeData->setLineJoin(svgStyle.joinStyle());
354 strokeData->setMiterLimit(svgStyle.strokeMiterLimit());
365 strokeData->setLineDash(dashArray, svgStyle.strokeDashOffset()->value(lengthContext));
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1181 StrokeData strokeData;
1182 strokeData.setThickness(lineWidth());
1183 strokeData.setLineCap(getLineCap());
1184 strokeData.setLineJoin(getLineJoin());
1185 strokeData.setMiterLimit(miterLimit());
1186 strokeData.setLineDash(getLineDash(), lineDashOffset());
1187 return path.strokeContains(transformedPoint, strokeData);
2374 StrokeData strokeData; local
2375 strokeData.setThickness(focusRingWidth);
2378 if (!computeDirtyRect(path.strokeBoundingRect(strokeData),
[all...]

Completed in 143 milliseconds