/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | DragDownHelperTest.kt | 68 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 D | PulseExpansionHandlerTest.kt | 89 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 D | ActivatableNotificationView.java | 344 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 D | ExpandableView.java | 210 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 D | ExpandableOutlineView.java | 254 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 D | NotificationBackgroundView.java | 164 public void setActualHeight(int actualHeight) { in setActualHeight() argument 168 mActualHeight = actualHeight; in setActualHeight()
|
H A D | NotificationGuts.java | 356 public void setActualHeight(int actualHeight) { in setActualHeight() argument 357 mActualHeight = actualHeight; in setActualHeight()
|
H A D | ExpandableNotificationRow.java | 2318 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 D | MediaContainerView.kt | 54 if (clipHeight != actualHeight) { 55 clipHeight = actualHeight
|
H A D | StackStateAnimator.java | 398 int actualHeight = changingView.getActualHeight(); in processAnimationEvents() local 404 - (ownPosition + actualHeight / 2.0f)) * 2 / in processAnimationEvents() 405 actualHeight); in processAnimationEvents()
|
H A D | NotificationChildrenContainer.java | 1176 public void setActualHeight(int actualHeight) { 1180 mActualHeight = actualHeight;
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | PulseExpansionHandler.kt | 266 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 D | LockscreenShadeTransitionController.kt | 910 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 D | MediaContainerViewTest.kt | 34 mediaContainerView.actualHeight = 10
|
H A D | NotificationShelfTest.kt | 203 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 D | MessagingImageMessage.java | 289 public void setActualHeight(int actualHeight) { 290 mActualHeight = actualHeight;
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/ |
H A D | QSTileViewImpl.kt | 276 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 D | NotificationLaunchAnimatorController.kt | 89 val height = max(0, notification.actualHeight - notification.clipBottomAmount)
|
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/ |
H A D | DialogFillUi.java | 202 final int actualHeight = serviceIcon.getMinimumHeight(); in setServiceIcon() local 205 + "(" + actualWidth + "x" + actualHeight + ")"); in setServiceIcon()
|