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 93 StrokeData strokeData;
94 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
100 return usePath->strokeContains(nonScalingTransform.mapPoint(point), strokeData);
103 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 371 void SVGRenderSupport::applyStrokeStyleToStrokeData(StrokeData* strokeData, const RenderStyle* style, const RenderObject* object)
373 ASSERT(strokeData);
383 strokeData->setThickness(svgStyle->strokeWidth()->value(lengthContext));
384 strokeData->setLineCap(svgStyle->capStyle());
385 strokeData->setLineJoin(svgStyle->joinStyle());
386 strokeData->setMiterLimit(svgStyle->strokeMiterLimit());
397 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/
GraphicsContext.h 122 float strokeThickness() const { return immutableState()->strokeData().thickness(); }
125 StrokeStyle strokeStyle() const { return immutableState()->strokeData().style(); }
128 Color strokeColor() const { return immutableState()->strokeData().color(); }
132 Pattern* strokePattern() const { return immutableState()->strokeData().pattern(); }
135 Gradient* strokeGradient() const { return immutableState()->strokeData().gradient(); }
GraphicsContextState.h 37 #include "platform/graphics/StrokeData.h"
72 const StrokeData& strokeData() const { return m_strokeData; }
164 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.cpp 910 if (immutableState()->strokeData().style() != NoStroke
911 && immutableState()->strokeData().color().alpha()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 237 // StrokeData. The default values that StrokeData uses may not the same values
    [all...]

Completed in 526 milliseconds