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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGShape.cpp 92 StrokeData strokeData;
93 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
99 return usePath->strokeContains(nonScalingTransform.mapPoint(point), strokeData);
102 return m_path->strokeContains(point, strokeData);
386 StrokeData strokeData;
387 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
392 FloatRect strokeBoundingRect = usePath->strokeBoundingRect(strokeData);
397 strokeBoundingBox.unite(path().strokeBoundingRect(strokeData));
    [all...]
SVGRenderSupport.cpp 340 void SVGRenderSupport::applyStrokeStyleToStrokeData(StrokeData* strokeData, const RenderStyle* style, const RenderObject* object)
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));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDraw.java 34 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation.StrokeData;
91 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix,
109 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix,
158 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas,
218 void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix,
239 for (FilterDrawRepresentation.StrokeData strokeData : mParameters.getDrawing()) {
240 paint(strokeData, canvas, originalRotateToScreen, quality);
260 StrokeData stroke = mParameters.getCurrentDrawing();
268 Vector<FilterDrawRepresentation.StrokeData> v = mParameters.getDrawing()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextState.h 37 #include "platform/graphics/StrokeData.h"
83 const StrokeData& strokeData() const { return m_strokeData; }
156 StrokeData m_strokeData;
Path.cpp 74 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);
GraphicsContext.h 117 float strokeThickness() const { return immutableState()->strokeData().thickness(); }
120 StrokeStyle strokeStyle() const { return immutableState()->strokeData().style(); }
GraphicsContext.cpp 990 if (immutableState()->strokeData().style() != NoStroke
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 242 // StrokeData. The default values that StrokeData uses may not the same values
    [all...]

Completed in 91 milliseconds