Home
last modified time | relevance | path

Searched refs:clipHeight (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DMediaContainerView.kt33 override var clipHeight = 0
54 if (clipHeight != actualHeight) {
55 clipHeight = actualHeight
64 bounds.bottom = clipHeight
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DMediaContainerViewTest.kt32 assertTrue(mediaContainerView.clipHeight == 0)
36 assertTrue(mediaContainerView.clipHeight == 10)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DRoundable.kt26 val clipHeight: Int
363 val height = roundable.clipHeight
380 val height = roundable.clipHeight
/aosp14/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java430 int clipHeight = contentBottom - contentTop; in render() local
434 (float)clipHeight / getHeight()); in render()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableView.java98 int clipHeight = Math.max(mActualHeight - mClipTopAmount - mClipBottomAmount, 0); in getClipHeight() local
99 return Math.max(clipHeight, mMinimumHeightForClipping); in getClipHeight()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DRoundableTest.kt206 override val clipHeight: Int