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

/external/skia/tests/
H A DPaintTest.cpp8 SkPath path, stroke; local
25 paint.getFillPath(path, &stroke);
26 strokeR = stroke.getBounds();
35 // test that our stroke didn't explode
/external/skia/src/core/
H A DSkPathEffect.cpp101 SkStroke stroke; local
103 stroke.setWidth(fWidth);
104 stroke.setMiterLimit(fMiter);
105 stroke.setJoin((SkPaint::Join)fJoin);
106 stroke.setCap((SkPaint::Cap)fCap);
107 stroke.setDoFill(fStyle == SkPaint::kStrokeAndFill_Style);
109 stroke.strokePath(src, dst);
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGResources.h60 RenderSVGResourceContainer* stroke() const { return m_fillStrokeData ? m_fillStrokeData->stroke : 0; } function in class:WebCore::SVGResources
153 // stroke: 'shapes' and 'text content elements'
158 , stroke(0)
168 RenderSVGResourceContainer* stroke; member in struct:WebCore::SVGResources::FillStrokeData
H A DSVGResources.cpp325 if (m_fillStrokeData->stroke)
326 m_fillStrokeData->stroke->removeClientFromCache(object, markForInvalidation);
379 if (m_fillStrokeData->stroke == resource) {
380 m_fillStrokeData->stroke->removeAllClientsFromCache();
381 m_fillStrokeData->stroke = 0;
445 if (m_fillStrokeData->stroke)
446 set.add(m_fillStrokeData->stroke);
601 bool SVGResources::setStroke(RenderSVGResourceContainer* stroke) argument
603 if (!stroke)
606 ASSERT(stroke
[all...]
/external/skia/src/animator/
H A DSkDrawPaint.h62 SkBool stroke; member in class:SkDrawPaint
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontLinux.cpp118 // We draw text up to two times (once for fill, once for stroke).
192 bool stroke = (textMode & TextModeStroke) local
196 if (!fill && !stroke)
204 if (stroke) {
231 if (stroke) {
/external/skia/src/svg/
H A DSkSVGParser.cpp134 bool stroke = false; local
140 stroke = walking->f_stroke.equals("none") == false;
151 return stroke && fill;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp130 QPainterPathStroker stroke; local
135 stroke.setWidth(pen.widthF());
136 stroke.setCapStyle(pen.capStyle());
137 stroke.setJoinStyle(pen.joinStyle());
138 stroke.setMiterLimit(pen.miterLimit());
139 stroke.setDashPattern(pen.dashPattern());
140 stroke.setDashOffset(pen.dashOffset());
142 return stroke.createStroke(m_path).contains(point);
160 QPainterPathStroker stroke; local
165 stroke
[all...]
/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/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp920 void CanvasRenderingContext2D::stroke() function in class:WebCore::CanvasRenderingContext2D
930 // Fast approximation of the stroke's bounding rect.
/external/webkit/Source/WebCore/platform/graphics/android/
H A DFontAndroid.cpp150 // stroke the shadow if we have stroke but no fill
1019 bool stroke = mode & TextModeStroke; local
1020 if (!fill && !stroke)
1026 if (stroke)
1042 if (stroke) {
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp709 // Text lines are drawn using the stroke color.
951 // If no dash is set, revert to solid stroke
1116 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle stroke) argument
1121 platformContext()->setStrokeStyle(stroke);
/external/webkit/Source/WebCore/rendering/
H A DInlineTextBox.cpp582 // Make the text stroke color legible against a white background
588 // Make the text stroke color legible against a white background
632 Color stroke = paintInfo.forceBlackText ? Color::black : pseudoStyle->visitedDependentColor(CSSPropertyWebkitTextStrokeColor); local
633 if (stroke != selectionStrokeColor) {
636 selectionStrokeColor = stroke;
/external/webkit/Source/WebCore/rendering/style/
H A DSVGRenderStyle.h161 if (!(stroke->opacity == obj))
162 stroke.access()->opacity = obj;
167 if (!(stroke->paint == obj))
168 stroke.access()->paint = obj;
173 if (!(stroke->dashArray == obj))
174 stroke.access()->dashArray = obj;
179 if (!(stroke->miterLimit == obj))
180 stroke.access()->miterLimit = obj;
185 if (!(stroke->width == obj))
186 stroke
387 DataRef<StyleStrokeData> stroke; member in class:WebCore::SVGRenderStyle
[all...]
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/SwingUtil.class SwingUtil.java package proguard ...

Completed in 1837 milliseconds