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

1 2

  /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), mFontFeatureSettings(paint.mFontFeatureSettings)
    [all...]
Paint.h 29 class ANDROID_API Paint : public SkPaint {
31 Paint();
32 Paint(const Paint& paint);
33 Paint(const SkPaint& paint);
34 ~Paint();
36 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 20 import android.graphics.Paint;
21 import android.graphics.Paint.FontMetricsInt;
27 new Paint.FontMetricsInt();
PaintTest.java 23 import android.graphics.Paint;
24 import android.graphics.Paint.Align;
25 import android.graphics.Paint.Cap;
26 import android.graphics.Paint.Join;
27 import android.graphics.Paint.Style;
56 new Paint();
58 new Paint(1);
60 Paint p = new Paint();
61 new Paint(p)
    [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/pdfium/fpdfsdk/src/pdfwindow/
PWL_EditCtrl.cpp 407 void CPWL_EditCtrl::Paint() {
409 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/src/fxedit/
fxet_edit.cpp 821 Paint();
827 Paint();
833 Paint();
839 Paint();
845 Paint();
851 Paint();
857 Paint();
863 Paint();
869 Paint();
875 Paint();
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 36 * The Paint class holds the style and color information about how to draw
39 public class Paint {
44 // The approximate size of a native paint object.
47 // Use a Holder to allow static initialization of Paint in the boot image.
50 Paint.class.getClassLoader(), nGetNativeFinalizer(), NATIVE_PAINT_SIZE);
102 * Paint flag that enables antialiasing when drawing.
107 * @see #Paint(int)
112 * Paint flag that enables bilinear sampling on scaled bitmaps.
124 * @see #Paint(int)
129 * 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/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 193 milliseconds

1 2