/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/ |
D | ColorValueView.java | 44 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()
|
D | ColorSaturationView.java | 48 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()
|
D | ColorOpacityView.java | 48 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()
|
D | ColorBrightnessView.java | 48 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()
|
D | ColorHueView.java | 46 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()
|
D | ColorSVRectView.java | 46 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()
|
D | ColorRectView.java | 45 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/ |
D | FingerprintLocationAnimationView.java | 50 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/ |
D | AnalogClock.java | 66 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()
|