Home
last modified time | relevance | path

Searched refs:mBorderPaint (Results 1 – 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
DAbstractAvatarDrawable.java56 protected final Paint mBorderPaint; field in AbstractAvatarDrawable
72 mBorderPaint = new Paint(); in AbstractAvatarDrawable()
73 mBorderPaint.setColor(Color.TRANSPARENT); in AbstractAvatarDrawable()
74 mBorderPaint.setStyle(Paint.Style.STROKE); in AbstractAvatarDrawable()
75 mBorderPaint.setStrokeWidth(mBorderWidth); in AbstractAvatarDrawable()
76 mBorderPaint.setAntiAlias(true); in AbstractAvatarDrawable()
133 canvas.drawCircle(bounds.centerX(), bounds.centerY(), radius, mBorderPaint); in drawBitmap() local
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
DCategoryView.java44 private Paint mBorderPaint; field in CategoryView
66 mBorderPaint = new Paint(mSelectPaint); in CategoryView()
67 mBorderPaint.setColor(Color.BLACK); in CategoryView()
126 mSelectionStroke, mSelectPaint, mBorderStroke, mBorderPaint); in onDraw()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DImageDraw.java41 private Paint mBorderPaint = new Paint(); field in ImageDraw
85 mBorderPaint.setColor(mBorderColor); in setupConstants()
86 mBorderPaint.setStyle(Paint.Style.STROKE); in setupConstants()
87 mBorderPaint.setStrokeWidth(edge); in setupConstants()