Home
last modified time | relevance | path

Searched refs:actualHeight (Results 1 – 19 of 19) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DDragDownHelperTest.kt68 whenever(expandableView.actualHeight).thenReturn(500)
72 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight
77 whenever(expandableView.actualHeight).thenReturn(collapsedHeight)
81 verify(expandableView, never()).actualHeight = anyInt()
H A DPulseExpansionHandlerTest.kt89 whenever(expandableView.actualHeight).thenReturn(500)
93 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight
98 whenever(expandableView.actualHeight).thenReturn(collapsedHeight)
102 verify(expandableView, never()).actualHeight = anyInt()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DActivatableNotificationView.java344 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument
345 super.setActualHeight(actualHeight, notifyListeners); in setActualHeight()
346 setPivotY(actualHeight / 2); in setActualHeight()
347 mBackgroundNormal.setActualHeight(actualHeight); in setActualHeight()
511 final int actualHeight = getActualHeight(); in updateAppearRect() local
512 float bottom = actualHeight * interpolatedFraction; in updateAppearRect()
522 actualHeight - (actualHeight - mTargetPoint.y) * fraction); in updateAppearRect()
H A DExpandableView.java210 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument
211 if (mActualHeight != actualHeight) { in setActualHeight()
212 mActualHeight = actualHeight; in setActualHeight()
220 public void setActualHeight(int actualHeight) { in setActualHeight() argument
221 setActualHeight(actualHeight, true /* notifyListeners */); in setActualHeight()
H A DExpandableOutlineView.java254 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument
256 super.setActualHeight(actualHeight, notifyListeners); in setActualHeight()
257 if (previousHeight != actualHeight) { in setActualHeight()
H A DNotificationBackgroundView.java164 public void setActualHeight(int actualHeight) { in setActualHeight() argument
168 mActualHeight = actualHeight; in setActualHeight()
H A DNotificationGuts.java356 public void setActualHeight(int actualHeight) { in setActualHeight() argument
357 mActualHeight = actualHeight; in setActualHeight()
H A DExpandableNotificationRow.java2318 int actualHeight = params.getBottom() - top;
2319 setActualHeight(actualHeight);
2359 mBackgroundNormal.setExpandAnimationSize(params.getWidth(), actualHeight);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DMediaContainerView.kt54 if (clipHeight != actualHeight) {
55 clipHeight = actualHeight
H A DStackStateAnimator.java398 int actualHeight = changingView.getActualHeight(); in processAnimationEvents() local
404 - (ownPosition + actualHeight / 2.0f)) * 2 / in processAnimationEvents()
405 actualHeight); in processAnimationEvents()
H A DNotificationChildrenContainer.java1176 public void setActualHeight(int actualHeight) {
1180 mActualHeight = actualHeight;
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DPulseExpansionHandler.kt266 child.actualHeight = newHeight
291 if (child.actualHeight == child.collapsedHeight) {
295 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight)
300 child.actualHeight = animation.animatedValue as Int
H A DLockscreenShadeTransitionController.kt910 child.actualHeight = (child.collapsedHeight + rubberband).toInt()
918 if (child.actualHeight == child.collapsedHeight) {
922 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight)
927 child.actualHeight = animation.animatedValue as Int
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DMediaContainerViewTest.kt34 mediaContainerView.actualHeight = 10
H A DNotificationShelfTest.kt203 whenever(expandableView.actualHeight).thenReturn(20)
230 whenever(expandableView.actualHeight).thenReturn(20)
257 whenever(expandableView.actualHeight).thenReturn(25)
284 whenever(expandableView.actualHeight).thenReturn(10)
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingImageMessage.java289 public void setActualHeight(int actualHeight) {
290 mActualHeight = actualHeight;
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileViewImpl.kt276 val actualHeight = if (heightOverride != HeightOverrideable.NO_OVERRIDE) { regex
284 bottom = top + (actualHeight * constrainedSquishiness).toInt()
285 scrollY = (actualHeight - height) / 2
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationLaunchAnimatorController.kt89 val height = max(0, notification.actualHeight - notification.clipBottomAmount)
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DDialogFillUi.java202 final int actualHeight = serviceIcon.getMinimumHeight(); in setServiceIcon() local
205 + "(" + actualWidth + "x" + actualHeight + ")"); in setServiceIcon()