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

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterDrawRepresentation.java 89 public static class StrokeData implements Cloneable {
97 public StrokeData() {
100 public StrokeData(StrokeData copy) {
111 if (!(o instanceof StrokeData)) {
114 StrokeData sd = (StrokeData) o;
131 public StrokeData clone() throws CloneNotSupportedException {
132 return (StrokeData) super.clone();
157 private Vector<StrokeData> mDrawing = new Vector<StrokeData>()
    [all...]
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/
StrokeData.cpp 30 #include "platform/graphics/StrokeData.h"
38 void StrokeData::setLineDash(const DashArray& dashes, float dashOffset)
60 float StrokeData::setupPaint(SkPaint* paint, int length) const
StrokeData.h 46 class PLATFORM_EXPORT StrokeData {
48 StrokeData()
Path.h 48 class StrokeData;
79 bool strokeContains(const FloatPoint&, const StrokeData&) const;
81 FloatRect strokeBoundingRect(const StrokeData&) const;
GraphicsContextState.h 36 #include "platform/graphics/StrokeData.h"
112 StrokeData m_strokeData;
Path.cpp 75 bool Path::strokeContains(const FloatPoint& point, const StrokeData& strokeData) const
78 strokeData.setupPaint(&paint);
90 FloatRect Path::strokeBoundingRect(const StrokeData& strokeData) const
93 strokeData.setupPaint(&paint);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderSupport.h 76 static void applyStrokeStyleToStrokeData(StrokeData*, const RenderStyle*, const RenderObject*);
RenderSVGShape.cpp 99 StrokeData strokeData;
100 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
106 return usePath->strokeContains(nonScalingTransform.mapPoint(point), strokeData);
109 return m_path->strokeContains(point, strokeData);
396 StrokeData strokeData;
397 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
402 FloatRect strokeBoundingRect = usePath->strokeBoundingRect(strokeData);
407 strokeBoundingBox.unite(path().strokeBoundingRect(strokeData));
    [all...]
SVGRenderSupport.cpp 377 void SVGRenderSupport::applyStrokeStyleToStrokeData(StrokeData* strokeData, const RenderStyle* style, const RenderObject* object)
379 ASSERT(strokeData);
389 strokeData->setThickness(svgStyle->strokeWidth().value(lengthContext));
390 strokeData->setLineCap(svgStyle->capStyle());
391 strokeData->setLineJoin(svgStyle->joinStyle());
392 strokeData->setMiterLimit(svgStyle->strokeMiterLimit());
403 strokeData->setLineDash(dashArray, svgStyle->strokeDashOffset().value(lengthContext));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageDraw.java 43 private FilterDrawRepresentation.StrokeData mTmpStrokData =
44 new FilterDrawRepresentation.StrokeData();
102 new FilterDrawRepresentation.StrokeData();
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 322 third_party/WebKit/Source/platform/graphics/StrokeData.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 321 third_party/WebKit/Source/platform/graphics/StrokeData.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 321 third_party/WebKit/Source/platform/graphics/StrokeData.cpp \
    [all...]
blink_platform.target.linux-arm.mk 322 third_party/WebKit/Source/platform/graphics/StrokeData.cpp \
    [all...]
blink_platform.target.linux-mips.mk 321 third_party/WebKit/Source/platform/graphics/StrokeData.cpp \
    [all...]
blink_platform.target.linux-x86.mk 321 third_party/WebKit/Source/platform/graphics/StrokeData.cpp \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 128 // StrokeData. The default values that StrokeData uses may not the same values
1003 StrokeData strokeData;
1004 strokeData.setThickness(lineWidth());
1005 strokeData.setLineCap(getLineCap());
1006 strokeData.setLineJoin(getLineJoin());
1007 strokeData.setMiterLimit(miterLimit());
1008 strokeData.setLineDash(getLineDash(), lineDashOffset());
1009 return m_path.strokeContains(transformedPoint, strokeData);
    [all...]

Completed in 290 milliseconds