Searched refs:borderWidth (Results 1 - 6 of 6) 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.java111 PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) {
129 if (borderWidth > 0) {
130 mBorderDrawable = createBorderDrawable(borderWidth, backgroundTint);
345 CircularBorderDrawable createBorderDrawable(int borderWidth, ColorStateList backgroundTint) { argument
353 borderDrawable.setBorderWidth(borderWidth);
110 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/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java51 PorterDuff.Mode backgroundTintMode, int rippleColor, int borderWidth) {
60 if (borderWidth > 0) {
61 mBorderDrawable = createBorderDrawable(borderWidth, backgroundTint);
50 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 4865 milliseconds