Searched refs:strokeData (Results 1 - 7 of 7) sorted by relevance

/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/platform/graphics/
H A DGraphicsContextState.h83 const StrokeData& strokeData() const { return m_strokeData; } function in class:blink::FINAL
H A DPath.cpp74 bool Path::strokeContains(const FloatPoint& point, const StrokeData& strokeData) const
77 strokeData.setupPaint(&paint);
89 FloatRect Path::strokeBoundingRect(const StrokeData& strokeData) const
92 strokeData.setupPaint(&paint);
H A DGraphicsContext.h117 float strokeThickness() const { return immutableState()->strokeData().thickness(); }
120 StrokeStyle strokeStyle() const { return immutableState()->strokeData().style(); }
H A DGraphicsContext.cpp990 if (immutableState()->strokeData().style() != NoStroke
1461 immutableState()->strokeData().setupPaintDashPathEffect(&paint, 0);
/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 634 milliseconds