Searched defs:mStrokeWidth (Results 1 - 8 of 8) sorted by path

/frameworks/base/core/java/com/android/internal/widget/
H A DEmphasizedNotificationButton.java38 private final int mStrokeWidth; field in class:EmphasizedNotificationButton
58 mStrokeWidth = getResources().getDimensionPixelSize(
80 inner.setStroke(hasStroke ? mStrokeWidth : 0, mStrokeColor);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java1513 final int defaultStrokeWidth = Math.max(0, st.mStrokeWidth);
1714 if (mGradientState.mStrokeWidth >= 0 && mStrokePaint != null
1734 boolean useFillOpacity = st.mOpaqueOverShape && (mGradientState.mStrokeWidth <= 0
1806 public int mStrokeWidth = -1; // if >= 0 use stroking. field in class:GradientDrawable.GradientState
1863 mStrokeWidth = orig.mStrokeWidth;
1966 if (mStrokeWidth > 0) {
1967 mStrokeWidth = Drawable.scaleFromDensity(
1968 mStrokeWidth, sourceDensity, targetDensity, true);
2083 mStrokeWidth
[all...]
/frameworks/base/libs/hwui/font/
H A DFont.h71 float mStrokeWidth; member in struct:android::uirenderer::Font::FontDescription
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSmartReplyView.java98 private final int mStrokeWidth; field in class:SmartReplyView
147 mStrokeWidth = strokeWidth;
607 gradientDrawable.setStroke(mStrokeWidth, strokeColor);
/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java95 private float mStrokeWidth; field in class:Paint_Delegate
184 return mStrokeWidth;
428 return delegate.mStrokeWidth;
439 delegate.mStrokeWidth = width;
1243 mStrokeWidth = paint.mStrokeWidth;
1269 mStrokeWidth = 1.f;
/frameworks/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java620 float mStrokeWidth = 0; field in class:VectorDrawable_Delegate.VFullPath_Delegate
645 mStrokeWidth = copy.mStrokeWidth;
733 return mStrokeWidth;
737 mStrokeWidth = strokeWidth;
1234 strokePaint.setStrokeWidth(fullPath.mStrokeWidth * finalStrokeScale);
/frameworks/support/graphics/drawable/static/src/main/java/androidx/vectordrawable/graphics/drawable/
H A DVectorDrawableCompat.java1245 strokePaint.setStrokeWidth(fullPath.mStrokeWidth * finalStrokeScale);
1641 float mStrokeWidth = 0; field in class:VectorDrawableCompat.VFullPath
1665 mStrokeWidth = copy.mStrokeWidth;
1764 mStrokeWidth = TypedArrayUtils.getNamedFloat(a, parser, "strokeWidth",
1765 AndroidResources.STYLEABLE_VECTOR_DRAWABLE_PATH_STROKE_WIDTH, mStrokeWidth);
1805 return mStrokeWidth;
1810 mStrokeWidth = strokeWidth;
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DCircularProgressDrawable.java627 float mStrokeWidth = 5f; field in class:CircularProgressDrawable.Ring
689 float arcRadius = mRingCenterRadius + mStrokeWidth / 2f;
693 (mArrowWidth * mArrowScale) / 2f, mStrokeWidth / 2f);
708 float inset = mStrokeWidth / 2f; // Calculate inset to draw inside the arc
738 bounds.centerY() + mStrokeWidth / 2f);
838 mStrokeWidth = strokeWidth;
843 return mStrokeWidth;

Completed in 267 milliseconds