HomeSort by relevance Sort by last modified time
    Searched refs:mBorderPaint (Results 1 - 8 of 8) sorted by null

  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
CircularBitmapDrawable.java 41 private final Paint mBorderPaint = new Paint();
61 mBorderPaint.setColor(Color.TRANSPARENT);
62 mBorderPaint.setStyle(Style.STROKE);
63 mBorderPaint.setStrokeWidth(mBorderWidth);
64 mBorderPaint.setAntiAlias(true);
71 final boolean changed = mBorderPaint.getStrokeWidth() != borderWidth;
72 mBorderPaint.setStrokeWidth(borderWidth);
84 final boolean changed = mBorderPaint.getColor() != color;
85 mBorderPaint.setColor(color);
115 bounds.width() / 2f - mBorderWidth / 2, mBorderPaint);
    [all...]
StyledCornersBitmapDrawable.java 58 private final Paint mBorderPaint = new Paint();
95 mBorderPaint.setColor(Color.TRANSPARENT);
96 mBorderPaint.setStyle(Style.STROKE);
97 mBorderPaint.setStrokeWidth(mBorderWidth);
98 mBorderPaint.setAntiAlias(true);
111 final boolean changed = mBorderPaint.getStrokeWidth() != borderWidth;
112 mBorderPaint.setStrokeWidth(borderWidth);
124 final boolean changed = mBorderPaint.getColor() != color;
125 mBorderPaint.setColor(color);
287 canvas.drawPath(mClipPath, mBorderPaint);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AbstractAvatarDrawable.java 56 protected final Paint mBorderPaint;
72 mBorderPaint = new Paint();
73 mBorderPaint.setColor(Color.TRANSPARENT);
74 mBorderPaint.setStyle(Paint.Style.STROKE);
75 mBorderPaint.setStrokeWidth(mBorderWidth);
76 mBorderPaint.setAntiAlias(true);
133 canvas.drawCircle(bounds.centerX(), bounds.centerY(), radius, mBorderPaint);
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 295 - mBorderWidth, mBorderPaint);
331 private Paint mBorderPaint = new Paint();
356 mBorderPaint.setStrokeWidth(mBorderWidth);
357 mBorderPaint.setColor(INACTIVE_BORDER_COLOR);
358 mBorderPaint.setStyle(Paint.Style.STROKE);
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 295 - mBorderWidth, mBorderPaint);
331 private Paint mBorderPaint = new Paint();
356 mBorderPaint.setStrokeWidth(mBorderWidth);
357 mBorderPaint.setColor(INACTIVE_BORDER_COLOR);
358 mBorderPaint.setStyle(Paint.Style.STROKE);
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 295 - mBorderWidth, mBorderPaint);
331 private Paint mBorderPaint = new Paint();
356 mBorderPaint.setStrokeWidth(mBorderWidth);
357 mBorderPaint.setColor(INACTIVE_BORDER_COLOR);
358 mBorderPaint.setStyle(Paint.Style.STROKE);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryView.java 44 private Paint mBorderPaint;
66 mBorderPaint = new Paint(mSelectPaint);
67 mBorderPaint.setColor(Color.BLACK);
126 mSelectionStroke, mSelectPaint, mBorderStroke, mBorderPaint);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageDraw.java 41 private Paint mBorderPaint = new Paint();
85 mBorderPaint.setColor(mBorderColor);
86 mBorderPaint.setStyle(Paint.Style.STROKE);
87 mBorderPaint.setStrokeWidth(edge);

Completed in 108 milliseconds