Searched refs:roundedCornerRadius (Results 1 - 6 of 6) sorted by relevance

/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.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.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;
/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/v7/cardview/gingerbread/android/support/v7/widget/
H A DCardViewGingerbread.java46 float roundedCornerRadius = cornerRadius + .5f;
47 sCornerRect.set(-roundedCornerRadius, -roundedCornerRadius, roundedCornerRadius,
48 roundedCornerRadius);
50 canvas.translate(bounds.left + roundedCornerRadius,
51 bounds.top + roundedCornerRadius);
64 canvas.drawRect(bounds.left + roundedCornerRadius - 1f, bounds.top,
65 bounds.right - roundedCornerRadius + 1f,
66 bounds.top + roundedCornerRadius, pain
[all...]

Completed in 236 milliseconds