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

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathDestructionActivity.java 47 Paint strokePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
53 strokePaint.setStyle(Paint.Style.STROKE);
85 strokePaint.setColor(getRandomColor());
86 canvas.drawPath(path, strokePaint);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
ColorWheel.java 65 private final Paint strokePaint;
101 strokePaint = new Paint();
102 strokePaint.setAntiAlias(true);
103 strokePaint.setStrokeWidth(STROKE_WIDTH);
104 strokePaint.setStyle(Paint.Style.STROKE);
176 strokePaint.setColor(borderColor);
181 canvas.drawArc(drawBound, startAngle, radiantDegrees, false, strokePaint);
183 canvas.drawArc(drawBound, startAngle, radiantDegrees, false, strokePaint);
191 centerXY - innerRadius * sinAngle, strokePaint);
198 centerXY - innerRadius * sinAngle, strokePaint);
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResource.cpp 54 SVGPaint* paint = mode == ApplyToFillMode ? svgStyle->fillPaint() : svgStyle->strokePaint();
74 if (SVGPaint* visitedPaint = mode == ApplyToFillMode ? visitedStyle->svgStyle()->fillPaint() : visitedStyle->svgStyle()->strokePaint()) {
SVGResources.cpp 271 if (setStroke(paintingResourceFromSVGPaint(document, style->strokePaint(), id, hasPendingResource)))
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.cpp 443 ANPPaint* strokePaint = gPaintI.newPaint();
444 gPaintI.setFlags(strokePaint, gPaintI.getFlags(strokePaint) | kAntiAlias_ANPPaintFlag);
445 gPaintI.setColor(strokePaint, m_activePaintColor);
446 gPaintI.setStyle(strokePaint, kStroke_ANPPaintStyle);
447 gPaintI.setStrokeWidth(strokePaint, 6.0);
448 gPaintI.setStrokeCap(strokePaint, kRound_ANPPaintCap);
449 gPaintI.setStrokeJoin(strokePaint, kRound_ANPPaintJoin);
457 gCanvasI.drawPath(canvas, m_touchPath, strokePaint);
461 gPaintI.deletePaint(strokePaint);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontLinux.cpp 199 SkPaint strokePaint, fillPaint;
205 gc->platformContext()->setupPaintForStroking(&strokePaint, 0, 0);
206 setupForTextPainting(&strokePaint, gc->strokeColor().rgb());
232 controller.fontPlatformDataForScriptRun()->setupPaint(&strokePaint);
233 adjustTextRenderMode(&strokePaint, gc->platformContext());
234 canvas->drawPosTextH(controller.glyphs(), controller.length() << 1, controller.xPositions(), point.y(), strokePaint);
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 298 SVGPaint* strokePaint() const { return stroke->paint.get(); }
323 bool hasStroke() const { return strokePaint()->paintType() != SVGPaint::SVG_PAINTTYPE_NONE; }
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 152 return svgStyle->strokePaint();
SVGCSSStyleSelector.cpp 241 HANDLE_INHERIT_AND_INITIAL(strokePaint, StrokePaint)

Completed in 436 milliseconds