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

  /gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
ColorWheel.java 64 private final Paint fillPaint;
98 fillPaint = new Paint();
99 fillPaint.setAntiAlias(true);
100 fillPaint.setStyle(Paint.Style.FILL);
151 fillPaint.setColor(colorsDefined[c]);
153 radiantDegrees, true, fillPaint);
157 fillPaint.setColor(Color.BLACK);
158 fillPaint.setAlpha(160);
159 canvas.drawCircle(centerXY, centerXY, centerXY - COLOR_METER_THICKNESS, fillPaint);
162 fillPaint.setColor(borderColor)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathDestructionActivity.java 48 Paint fillPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
54 fillPaint.setStyle(Paint.Style.FILL);
89 fillPaint.setColor(getRandomColor());
90 canvas.drawPath(path, fillPaint);
  /external/skia/gm/
complexclip2.cpp 96 SkPaint fillPaint;
97 fillPaint.setColor(SkColorSetRGB(0xA0,0xDD,0xA0));
108 canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint);
  /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 262 if (setFill(paintingResourceFromSVGPaint(document, style->fillPaint(), id, hasPendingResource)))
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontLinux.cpp 199 SkPaint strokePaint, fillPaint;
201 gc->platformContext()->setupPaintForFilling(&fillPaint);
202 setupForTextPainting(&fillPaint, gc->fillColor().rgb());
226 controller.fontPlatformDataForScriptRun()->setupPaint(&fillPaint);
227 adjustTextRenderMode(&fillPaint, gc->platformContext());
228 canvas->drawPosTextH(controller.glyphs(), controller.length() << 1, controller.xPositions(), point.y(), fillPaint);
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.cpp 418 ANPPaint* fillPaint = gPaintI.newPaint();
419 gPaintI.setFlags(fillPaint, gPaintI.getFlags(fillPaint) | kAntiAlias_ANPPaintFlag);
420 gPaintI.setStyle(fillPaint, kFill_ANPPaintStyle);
421 gPaintI.setColor(fillPaint, m_activePaintColor);
432 gCanvasI.drawOval(canvas, &point, fillPaint);
436 gPaintI.deletePaint(fillPaint);
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 296 SVGPaint* fillPaint() const { return fill->paint.get(); }
324 bool hasFill() const { return fillPaint()->paintType() != SVGPaint::SVG_PAINTTYPE_NONE; }
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 136 return svgStyle->fillPaint();
SVGCSSStyleSelector.cpp 234 HANDLE_INHERIT_AND_INITIAL(fillPaint, FillPaint)
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 599 SkPaint fillPaint;
600 fillPaint.setColor(paint.getColor());
601 platformContext()->canvas()->drawRect(r1, fillPaint);
602 platformContext()->canvas()->drawRect(r2, fillPaint);
    [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 345 milliseconds