Searched defs:stroke (Results 1 - 12 of 12) sorted by relevance

/external/skia/tests/
H A DPaintTest.cpp8 SkPath path, stroke; local
21 paint.getFillPath(path, &stroke);
22 strokeR = stroke.getBounds();
31 // test that our stroke didn't explode
/external/skia/src/core/
H A DSkPathEffect.cpp102 SkStroke stroke; local
104 stroke.setWidth(fWidth);
105 stroke.setMiterLimit(fMiter);
106 stroke.setJoin((SkPaint::Join)fJoin);
107 stroke.setCap((SkPaint::Cap)fCap);
108 stroke.setDoFill(fStyle == SkPaint::kStrokeAndFill_Style);
110 stroke.strokePath(src, dst);
/external/skia/src/animator/
H A DSkDrawPaint.h62 SkBool stroke; member in class:SkDrawPaint
/external/webkit/WebCore/rendering/style/
H A DSVGRenderStyle.h81 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(float, stroke, opacity, StrokeOpacity, strokeOpacity, 1.0f)
82 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(SVGPaint, stroke, paint, StrokePaint, strokePaint, SVGPaint::defaultStroke())
83 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(CSSValueList, stroke, dashArray, StrokeDashArray, strokeDashArray, 0)
84 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(float, stroke, miterLimit, StrokeMiterLimit, strokeMiterLimit, 4.0f)
86 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(CSSValue, stroke, width, StrokeWidth, strokeWidth, 0)
87 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(CSSValue, stroke, dashOffset, StrokeDashOffset, strokeDashOffset, 0);
173 DataRef<StyleStrokeData> stroke; member in class:WebCore::SVGRenderStyle
/external/skia/src/svg/
H A DSkSVGParser.cpp132 bool stroke = false; local
138 stroke = walking->f_stroke.equals("none") == false;
149 return stroke && fill;
/external/webkit/WebCore/platform/graphics/qt/
H A DPathQt.cpp91 QPainterPathStroker stroke; local
95 stroke.setWidth(pen.widthF());
96 stroke.setCapStyle(pen.capStyle());
97 stroke.setJoinStyle(pen.joinStyle());
98 stroke.setMiterLimit(pen.miterLimit());
99 stroke.setDashPattern(pen.dashPattern());
100 stroke.setDashOffset(pen.dashOffset());
102 return stroke.createStroke(m_path).contains(point);
123 QPainterPathStroker stroke; local
128 stroke
[all...]
/external/webkit/WebCore/platform/graphics/chromium/
H A DFontLinux.cpp106 // We draw text up to two times (once for fill, once for stroke).
489 bool stroke = (textMode & cTextStroke) local
493 if (!fill && !stroke)
501 if (stroke) {
516 if (stroke) {
/external/proguard/src/proguard/gui/splash/
H A DOverrideGraphics2D.java53 private Stroke stroke; field in class:OverrideGraphics2D
66 this.stroke = graphics.getStroke();
106 * @param stroke the fixed Stroke, or <code>null</code> to undo the fixing.
108 public void setOverrideStroke(Stroke stroke) argument
110 this.overrideStroke = stroke;
111 graphics.setStroke(stroke != null ? stroke : this.stroke);
162 public void setStroke(Stroke stroke) argument
164 this.stroke
[all...]
/external/webkit/WebCore/rendering/
H A DInlineTextBox.cpp336 // Would it be simpler to just check our own shadow and stroke overflow by hand here?
426 // Make the text stroke color legible against a white background
462 Color stroke = paintInfo.forceBlackText ? Color::black : pseudoStyle->textStrokeColor(); local
463 if (!stroke.isValid())
464 stroke = pseudoStyle->color();
465 if (stroke != selectionStrokeColor) {
468 selectionStrokeColor = stroke;
/external/webkit/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp665 void CanvasRenderingContext2D::stroke() function in class:WebCore::CanvasRenderingContext2D
/external/webkit/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp687 // Text lines are drawn using the stroke color.
916 // If no dash is set, revert to solid stroke
1037 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& stroke) argument
1042 platformContext()->setStrokeStyle(stroke);
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/SwingUtil.class SwingUtil.java package proguard ...

Completed in 83 milliseconds