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

/frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/
H A DRoundedRectHelperApi21.java41 public static void setClipToRoundedOutline(View view, boolean clip, int roundedCornerRadius) { argument
46 ViewOutlineProvider provider = sRoundedRectProvider.get(roundedCornerRadius);
48 provider = new RoundedRectOutlineProvider(roundedCornerRadius);
50 sRoundedRectProvider.put(roundedCornerRadius, provider);
H A DShadowHelperApi21.java39 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) {
40 if (roundedCornerRadius > 0) {
42 roundedCornerRadius);
38 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);
45 View shadowContainer, float focusedZ, float unfocusedZ, int roundedCornerRadius) {
67 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) {
69 shadowContainer, unfocusedZ, focusedZ, roundedCornerRadius);
104 View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) {
105 return mImpl.addDynamicShadow(shadowContainer, unfocusedZ, focusedZ, roundedCornerRadius);
33 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
44 addDynamicShadow( View shadowContainer, float focusedZ, float unfocusedZ, int roundedCornerRadius) argument
66 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
103 addDynamicShadow( View shadowContainer, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
H A DShadowOverlayContainer.java111 float unfocusedZ, float focusedZ, int roundedCornerRadius) {
115 initialize(shadowType, hasColorDimOverlay, roundedCornerRadius);
207 int roundedCornerRadius = roundedCorners ? getContext().getResources().getDimensionPixelSize(
209 initialize(shadowType, hasColorDimOverlay, roundedCornerRadius);
215 void initialize(int shadowType, boolean hasColorDimOverlay, int roundedCornerRadius) { argument
220 mRoundedCornerRadius = roundedCornerRadius;
221 mRoundedCorners = roundedCornerRadius > 0;
109 ShadowOverlayContainer(Context context, int shadowType, boolean hasColorDimOverlay, float unfocusedZ, float focusedZ, int roundedCornerRadius) argument
H A DShadowOverlayHelper.java200 private int roundedCornerRadius = 0; // 0 for default value field in class:ShadowOverlayHelper.Options
206 * @param roundedCornerRadius Number of pixels of rounded corner radius.
210 public Options roundedCornerRadius(int roundedCornerRadius){ argument
211 this.roundedCornerRadius = roundedCornerRadius;
234 return roundedCornerRadius;

Completed in 101 milliseconds