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/core/platform/graphics/
Path.h 47 class StrokeData;
78 bool strokeContains(const FloatPoint&, const StrokeData&) const;
80 FloatRect strokeBoundingRect(const StrokeData&) const;
StrokeData.cpp 30 #include "core/platform/graphics/StrokeData.h"
38 void StrokeData::setLineDash(const DashArray& dashes, float dashOffset)
60 float StrokeData::setupPaint(SkPaint* paint, int length) const
StrokeData.h 47 class StrokeData {
49 StrokeData()
GraphicsContextState.h 36 #include "core/platform/graphics/StrokeData.h"
110 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 73 static void applyStrokeStyleToStrokeData(StrokeData*, const RenderStyle*, const RenderObject*);
RenderSVGShape.cpp 98 StrokeData strokeData;
99 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
105 return usePath->strokeContains(nonScalingTransform.mapPoint(point), strokeData);
108 return m_path->strokeContains(point, strokeData);
384 StrokeData strokeData;
385 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
390 FloatRect strokeBoundingRect = usePath->strokeBoundingRect(strokeData);
395 strokeBoundingBox.unite(path().strokeBoundingRect(strokeData));
    [all...]
SVGRenderSupport.cpp 363 void SVGRenderSupport::applyStrokeStyleToStrokeData(StrokeData* strokeData, const RenderStyle* style, const RenderObject* object)
365 ASSERT(strokeData);
375 strokeData->setThickness(svgStyle->strokeWidth().value(lengthContext));
376 strokeData->setLineCap(svgStyle->capStyle());
377 strokeData->setLineJoin(svgStyle->joinStyle());
378 strokeData->setMiterLimit(svgStyle->strokeMiterLimit());
389 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/core/
webcore_platform.target.darwin-arm.mk 187 third_party/WebKit/Source/core/platform/graphics/StrokeData.cpp \
    [all...]
webcore_platform.target.darwin-mips.mk 187 third_party/WebKit/Source/core/platform/graphics/StrokeData.cpp \
    [all...]
webcore_platform.target.darwin-x86.mk 187 third_party/WebKit/Source/core/platform/graphics/StrokeData.cpp \
    [all...]
webcore_platform.target.linux-arm.mk 187 third_party/WebKit/Source/core/platform/graphics/StrokeData.cpp \
    [all...]
webcore_platform.target.linux-mips.mk 187 third_party/WebKit/Source/core/platform/graphics/StrokeData.cpp \
    [all...]
webcore_platform.target.linux-x86.mk 187 third_party/WebKit/Source/core/platform/graphics/StrokeData.cpp \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 138 // StrokeData. The default values that StrokeData uses may not the same values
985 StrokeData strokeData;
986 strokeData.setThickness(lineWidth());
987 strokeData.setLineCap(getLineCap());
988 strokeData.setLineJoin(getLineJoin());
989 strokeData.setMiterLimit(miterLimit());
990 strokeData.setLineDash(getLineDash(), lineDashOffset());
991 return m_path.strokeContains(transformedPoint, strokeData);
    [all...]

Completed in 5670 milliseconds