Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DMediaContainerView.kt33 override var clipHeight = 0 variable
54 if (clipHeight != actualHeight) { in updateClipping()
55 clipHeight = actualHeight in updateClipping()
64 bounds.bottom = clipHeight in onDraw()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DMediaContainerViewTest.kt32 assertTrue(mediaContainerView.clipHeight == 0) in testUpdateClipping_updatesClipHeight()
36 assertTrue(mediaContainerView.clipHeight == 10) in testUpdateClipping_updatesClipHeight()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DRoundable.kt24 val clipHeight: Int in <lambda>() constant
341 val height = roundable.clipHeight
358 val height = roundable.clipHeight
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableView.java104 int clipHeight = Math.max(mActualHeight - mClipTopAmount - mClipBottomAmount, 0); in getClipHeight() local
105 return Math.max(clipHeight, mMinimumHeightForClipping); in getClipHeight()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DRoundableTest.kt202 override val clipHeight: Int constant
/frameworks/native/libs/renderengine/skia/
DSkiaRenderEngine.cpp592 const auto clipHeight = display.clip.height(); in initCanvas() local
594 auto rotatedClipHeight = clipHeight; in initCanvas()
609 canvas->translate(-clipWidth / 2, -clipHeight / 2); in initCanvas()