Searched refs:borderWidth (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/design/base/android/support/design/widget/
H A DCircularBorderDrawable.java114 final int borderWidth = Math.round(mBorderWidth);
115 padding.set(borderWidth, borderWidth, borderWidth, borderWidth);
H A DFloatingActionButtonImpl.java83 PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth);
152 CircularBorderDrawable createBorderDrawable(int borderWidth, ColorStateList backgroundTint) { argument
160 borderDrawable.setBorderWidth(borderWidth);
82 setBackgroundDrawable(ColorStateList backgroundTint, PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) argument
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DCircularBitmapDrawable.java70 public void setBorderWidth(final float borderWidth) { argument
71 final boolean changed = mBorderPaint.getStrokeWidth() != borderWidth;
72 mBorderPaint.setStrokeWidth(borderWidth);
73 mBorderWidth = borderWidth;
H A DStyledCornersBitmapDrawable.java110 public void setBorderWidth(final float borderWidth) { argument
111 final boolean changed = mBorderPaint.getStrokeWidth() != borderWidth;
112 mBorderPaint.setStrokeWidth(borderWidth);
113 mBorderWidth = borderWidth;
/frameworks/support/design/gingerbread/android/support/design/widget/
H A DFloatingActionButtonGingerbread.java61 PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) {
79 if (borderWidth > 0) {
80 mBorderDrawable = createBorderDrawable(borderWidth, backgroundTint);
60 setBackgroundDrawable(ColorStateList backgroundTint, PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) argument
/frameworks/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java49 PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) {
58 if (borderWidth > 0) {
59 mBorderDrawable = createBorderDrawable(borderWidth, backgroundTint);
48 setBackgroundDrawable(ColorStateList backgroundTint, PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1099 final float borderWidth = 1f;
1100 setWorkPaintForBorder(borderWidth);
1101 canvas.drawCircle(dst.centerX(), dst.centerY(), dst.width() / 2f - borderWidth / 2,
1117 final float borderWidth = 1f;
1118 setWorkPaintForBorder(borderWidth);
1148 private void setWorkPaintForBorder(float borderWidth) { argument
1152 mWorkPaint.setStrokeWidth(borderWidth);

Completed in 224 milliseconds