HomeSort by relevance Sort by last modified time
    Searched defs:Paint (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/base/libs/hwui/hwui/
PaintImpl.cpp 17 #include "Paint.h"
21 Paint::Paint() :
26 Paint::Paint(const Paint& paint) : SkPaint(paint),
27 mLetterSpacing(paint.mLetterSpacing), mWordSpacing(paint.mWordSpacing)
    [all...]
Paint.h 29 class ANDROID_API Paint : public SkPaint {
44 Paint();
45 Paint(const Paint& paint);
46 Paint(const SkPaint& paint); // NOLINT(implicit)
47 ~Paint();
49 Paint& operator=(const Paint& other)
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BarFormatter.java 18 import android.graphics.Paint;
23 public Paint getFillPaint() {
27 public void setFillPaint(Paint fillPaint) {
31 public Paint getBorderPaint() {
35 public void setBorderPaint(Paint borderPaint) {
39 private Paint fillPaint;
40 private Paint borderPaint;
43 fillPaint = new Paint();
45 fillPaint.setStyle(Paint.Style.FILL);
47 borderPaint = new Paint();
    [all...]
XYRegionFormatter.java 20 import android.graphics.Paint;
29 private Paint paint = new Paint(); field in class:XYRegionFormatter
32 paint.setStyle(Paint.Style.FILL);
33 paint.setAntiAlias(true);
51 //paint = new Paint();
52 paint.setColor(color);
    [all...]
ValueMarker.java 20 import android.graphics.Paint;
42 private Paint linePaint;
43 private Paint textPaint;
44 //private Paint backgroundPaint;
51 linePaint = new Paint();
54 linePaint.setStyle(Paint.Style.STROKE);
55 textPaint = new Paint();
58 //backgroundPaint = new Paint();
78 public ValueMarker(Number value, String text, PositionMetricType textPosition, Paint linePaint, Paint textPaint) {
    [all...]
XYGraphWidget.java 82 private Paint gridBackgroundPaint;
83 private Paint rangeGridLinePaint;
84 private Paint rangeSubGridLinePaint;
85 private Paint domainGridLinePaint;
86 private Paint domainSubGridLinePaint;
87 private Paint domainLabelPaint;
88 private Paint rangeLabelPaint;
89 private Paint domainCursorPaint;
90 private Paint rangeCursorPaint;
91 private Paint cursorLabelPaint;
    [all...]
XYLegendWidget.java 49 private Paint textPaint;
50 private Paint iconBorderPaint;
60 textPaint = new Paint();
64 iconBorderPaint = new Paint();
65 iconBorderPaint.setStyle(Paint.Style.STROKE);
99 Paint bgPaint = plot.getGraphWidget().getGridBackgroundPaint();
107 Paint bgPaint = plot.getGraphWidget().getGridBackgroundPaint();
208 public Paint getTextPaint() {
212 public void setTextPaint(Paint textPaint) {
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_FontMetricsIntTest.java 21 import android.graphics.Paint;
22 import android.graphics.Paint.FontMetricsInt;
34 new Paint.FontMetricsInt();
PaintTest.java 31 import android.graphics.Paint;
32 import android.graphics.Paint.Align;
33 import android.graphics.Paint.Cap;
34 import android.graphics.Paint.Join;
35 import android.graphics.Paint.Style;
67 new Paint();
69 new Paint(1);
71 Paint p = new Paint();
72 new Paint(p)
    [all...]
CanvasTest.java 36 import android.graphics.Paint;
82 private Paint mPaint;
89 mPaint = new Paint();
509 final Paint p = new Paint();
584 final Paint p = new Paint();
810 mCanvas.saveLayer(new RectF(), new Paint(), Canvas.ALL_SAVE_FLAG);
1844 final Paint paint = new Paint(); local
1879 final Paint paint = new Paint(); local
1917 final Paint paint = new Paint(); local
1928 final Paint paint = new Paint(); local
2235 Paint paint = new Paint(); local
    [all...]
  /external/skia/src/gpu/text/
GrTextUtils.h 48 class Paint {
50 explicit Paint(const SkPaint* paint,
53 : fPaint(paint)
59 // These expose the paint's color run through its color filter (if any). This is only valid
76 Paint() = default;
80 // This is the paint's color run through its color filter, if present. This color should
87 * An extension of Paint that incorporated per-run modifications to the paint text settings and
91 class RunPaint : public Paint {
    [all...]
  /external/skia/experimental/go-skia/
skia.go 101 func (c *Canvas) DrawPaint(paint *Paint) {
102 C.sk_canvas_draw_paint(c.ptr, paint.ptr)
105 func (c *Canvas) DrawOval(rect *Rect, paint *Paint) {
106 // C.sk_canvas_draw_oval(c.ptr, (*C.sk_rect_t)(unsafe.Pointer(rect)), (*C.sk_paint_t)(paint.ptr))
107 C.sk_canvas_draw_oval(c.ptr, rect.cPointer(), paint.ptr)
110 func (c *Canvas) DrawRect(rect *Rect, paint *Paint) {
111 // C.sk_canvas_draw_rect(c.ptr, (*C.sk_rect_t)(unsafe.Pointer(rect)), (*C.sk_paint_t)(paint.ptr)
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
PlotStatistics.java 21 import android.graphics.Paint;
49 private Paint paint; field in class:PlotStatistics
51 paint = new Paint();
52 paint.setTextAlign(Paint.Align.CENTER);
53 paint.setColor(Color.WHITE);
54 paint.setTextSize(30);
95 canvas.drawText(annotationString, r.centerX(), r.centerY(), paint);
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
LayoutManager.java 30 private Paint anchorPaint;
32 private Paint outlinePaint;
34 private Paint outlineShadowPaint;
36 private Paint marginPaint;
38 private Paint paddingPaint;
46 anchorPaint = new Paint();
47 anchorPaint.setStyle(Paint.Style.FILL);
49 outlinePaint = new Paint();
51 outlinePaint.setStyle(Paint.Style.STROKE);
52 marginPaint = new Paint();
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/
TextLabelWidget.java 28 private Paint labelPaint;
35 labelPaint = new Paint();
38 labelPaint.setTextAlign(Paint.Align.CENTER);
142 public Paint getLabelPaint() {
146 public void setLabelPaint(Paint labelPaint) {
149 // when paint changes, packing params change too so check
  /external/skia/tests/
RefCntTest.cpp 127 class Paint {
161 Paint paint; local
162 REPORTER_ASSERT(reporter, paint.fEffect.get() == nullptr);
163 REPORTER_ASSERT(reporter, !paint.get());
166 paint.set(Create());
168 REPORTER_ASSERT(reporter, paint.fEffect.get()->fRefCnt == 1);
170 if (paint.get()) {
175 if (!paint.get()) {
181 paint.set(nullptr)
    [all...]
  /external/pdfium/fpdfsdk/pdfwindow/
PWL_EditCtrl.cpp 381 void CPWL_EditCtrl::Paint() {
382 m_pEdit->Paint();
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
Plot.java 113 private Paint borderPaint;
114 private Paint backgroundPaint;
145 borderPaint = new Paint();
147 borderPaint.setStyle(Paint.Style.STROKE);
150 backgroundPaint = new Paint();
152 backgroundPaint.setStyle(Paint.Style.FILL);
750 public Paint getBackgroundPaint() {
754 public void setBackgroundPaint(Paint backgroundPaint) {
850 public Paint getBorderPaint() {
855 * Set's the paint used to draw the border. Note that this method
    [all...]
  /external/pdfium/fpdfsdk/fxedit/
fxet_edit.cpp 893 Paint();
899 Paint();
905 Paint();
911 Paint();
916 Paint();
921 Paint();
926 Paint();
932 Paint();
938 Paint();
944 Paint();
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 45 * The Paint class holds the style and color information about how to draw
48 public class Paint {
54 // The approximate size of a native paint object.
57 // Use a Holder to allow static initialization of Paint in the boot image.
60 Paint.class.getClassLoader(), nGetNativeFinalizer(), NATIVE_PAINT_SIZE);
117 * Paint flag that enables antialiasing when drawing.
122 * @see #Paint(int)
127 * Paint flag that enables bilinear sampling on scaled bitmaps.
139 * @see #Paint(int)
144 * Paint flag that enables dithering when blitting
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0.jar 

Completed in 959 milliseconds

1 2 3