Home
last modified time | relevance | path

Searched refs:mDotPaint (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
DColorValueView.java44 private Paint mDotPaint; field in ColorValueView
66 mDotPaint = new Paint(); in ColorValueView()
68 mDotPaint.setStyle(Paint.Style.FILL); in ColorValueView()
69 mDotPaint.setColor(ctx.getResources().getColor(R.color.slider_dot_color)); in ColorValueView()
120 mDotPaint.setShader(g); in setupButton()
152 canvas.drawCircle(mDotX, mDotY, dotRadus, mDotPaint); in onDraw()
DColorSaturationView.java48 private Paint mDotPaint; field in ColorSaturationView
71 mDotPaint = new Paint(); in ColorSaturationView()
73 mDotPaint.setStyle(Paint.Style.FILL); in ColorSaturationView()
74 mDotPaint.setColor(ctx.getResources().getColor(R.color.slider_dot_color)); in ColorSaturationView()
138 mDotPaint.setShader(g); in setupButton()
174 canvas.drawCircle(mDotX, mDotY, mDotRadius, mDotPaint); in onDraw()
DColorOpacityView.java48 private Paint mDotPaint; field in ColorOpacityView
69 mDotPaint = new Paint(); in ColorOpacityView()
71 mDotPaint.setStyle(Paint.Style.FILL); in ColorOpacityView()
74 mDotPaint.setColor(res.getColor(R.color.slider_dot_color)); in ColorOpacityView()
143 mDotPaint.setShader(g); in setupButton()
175 canvas.drawCircle(mDotX, mDotY, mDotRadius, mDotPaint); in onDraw()
DColorBrightnessView.java48 private Paint mDotPaint; field in ColorBrightnessView
71 mDotPaint = new Paint(); in ColorBrightnessView()
73 mDotPaint.setStyle(Paint.Style.FILL); in ColorBrightnessView()
74 mDotPaint.setColor(ctx.getResources().getColor(R.color.slider_dot_color)); in ColorBrightnessView()
138 mDotPaint.setShader(g); in setupButton()
175 canvas.drawCircle(mDotX, mDotY, mDotRadius, mDotPaint); in onDraw()
DColorHueView.java46 private Paint mDotPaint; field in ColorHueView
71 mDotPaint = new Paint(); in ColorHueView()
73 mDotPaint.setStyle(Paint.Style.FILL); in ColorHueView()
74 mDotPaint.setColor(ctx.getResources().getColor(R.color.slider_dot_color)); in ColorHueView()
155 mDotPaint.setShader(g); in setupButton()
183 canvas.drawCircle(mDotX, mDotY, mDotRadius, mDotPaint); in onDraw()
DColorSVRectView.java46 private Paint mDotPaint = new Paint(); field in ColorSVRectView
73 mDotPaint.setStyle(Paint.Style.FILL); in ColorSVRectView()
75 mDotPaint.setColor(0x646464); in ColorSVRectView()
78 mDotPaint.setColor(ctx.getResources().getColor(R.color.slider_dot_color)); in ColorSVRectView()
131 canvas.drawCircle(mDotX, mDotY, mDotRadus, mDotPaint); in onDraw()
196 mDotPaint.setShader(g); in updateDotPaint()
DColorRectView.java45 private Paint mDotPaint; field in ColorRectView
78 mDotPaint = new Paint(); in ColorRectView()
80 mDotPaint.setStyle(Paint.Style.FILL); in ColorRectView()
81 mDotPaint.setColor(ctx.getResources().getColor(R.color.slider_dot_color)); in ColorRectView()
175 canvas.drawCircle(mDotX, mDotY, mDotRadus, mDotPaint); in onDraw()
194 mDotPaint.setShader(g); in updateDotPaint()
/packages/apps/Settings/src/com/android/settings/fingerprint/
DFingerprintLocationAnimationView.java50 private final Paint mDotPaint = new Paint(); field in FingerprintLocationAnimationView
67 mDotPaint.setAntiAlias(true); in FingerprintLocationAnimationView()
69 mDotPaint.setColor(color); in FingerprintLocationAnimationView()
84 canvas.drawCircle(getCenterX(), getCenterY(), mDotRadius, mDotPaint); in drawDot() local
/packages/apps/DeskClock/src/com/android/deskclock/
DAnalogClock.java66 private Paint mDotPaint; field in AnalogClock
92 mDotPaint = new Paint(Paint.ANTI_ALIAS_FLAG); in AnalogClock()
93 mDotPaint.setColor(dotColor); in AnalogClock()
206 if (mDotRadius > 0f && mDotPaint != null) { in onDraw()
207 canvas.drawCircle(x, y - (h / 2) + mDotOffset, mDotRadius, mDotPaint); in onDraw()