Searched defs:roundedCornerRadius (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/
H A DRoundedRectHelperApi21.java43 public static void setClipToRoundedOutline(View view, boolean clip, int roundedCornerRadius) { argument
48 ViewOutlineProvider provider = sRoundedRectProvider.get(roundedCornerRadius);
50 provider = new RoundedRectOutlineProvider(roundedCornerRadius);
52 sRoundedRectProvider.put(roundedCornerRadius, provider);
H A DShadowHelperApi21.java40 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) {
41 if (roundedCornerRadius > 0) {
43 roundedCornerRadius);
39 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DShadowHelper.java34 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius);
48 View shadowContainer, float focusedZ, float unfocusedZ, int roundedCornerRadius) {
73 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) {
75 shadowContainer, unfocusedZ, focusedZ, roundedCornerRadius);
110 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) {
111 return mImpl.addDynamicShadow(shadowContainer, unfocusedZ, focusedZ, roundedCornerRadius);
33 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
47 addDynamicShadow( View shadowContainer, float focusedZ, float unfocusedZ, int roundedCornerRadius) argument
72 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
109 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
H A DShadowOverlayContainer.java110 float unfocusedZ, float focusedZ, int roundedCornerRadius) {
114 initialize(shadowType, hasColorDimOverlay, roundedCornerRadius);
206 int roundedCornerRadius = roundedCorners ? getContext().getResources().getDimensionPixelSize(
208 initialize(shadowType, hasColorDimOverlay, roundedCornerRadius);
214 void initialize(int shadowType, boolean hasColorDimOverlay, int roundedCornerRadius) { argument
219 mRoundedCornerRadius = roundedCornerRadius;
220 mRoundedCorners = roundedCornerRadius > 0;
108 ShadowOverlayContainer(Context context, int shadowType, boolean hasColorDimOverlay, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
H A DShadowOverlayHelper.java197 private int roundedCornerRadius = 0; // 0 for default value field in class:ShadowOverlayHelper.Options
203 * @param roundedCornerRadius Number of pixels of rounded corner radius.
207 public Options roundedCornerRadius(int roundedCornerRadius){ argument
208 this.roundedCornerRadius = roundedCornerRadius;
231 return roundedCornerRadius;

Completed in 72 milliseconds