/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | DragDownHelperTest.kt | 73 whenever(expandableView.actualHeight).thenReturn(500) in cancelChildExpansion_updateHeight() 77 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight in cancelChildExpansion_updateHeight() 82 whenever(expandableView.actualHeight).thenReturn(collapsedHeight) in cancelChildExpansion_dontUpdateHeight() 86 verify(expandableView, never()).actualHeight = anyInt() in cancelChildExpansion_dontUpdateHeight()
|
D | PulseExpansionHandlerTest.kt | 85 whenever(expandableView.actualHeight).thenReturn(500) in resetChild_updateHeight() 89 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight in resetChild_updateHeight() 94 whenever(expandableView.actualHeight).thenReturn(collapsedHeight) in resetChild_dontUpdateHeight() 98 verify(expandableView, never()).actualHeight = anyInt() in resetChild_dontUpdateHeight()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | MediaContainerView.kt | 54 if (clipHeight != actualHeight) { in updateClipping() 55 clipHeight = actualHeight in updateClipping()
|
D | StackStateAnimator.java | 428 int actualHeight = changingView.getActualHeight(); in processAnimationEvents() local 434 - (ownPosition + actualHeight / 2.0f)) * 2 / in processAnimationEvents() 435 actualHeight); in processAnimationEvents()
|
D | NotificationChildrenContainer.java | 1316 public void setActualHeight(int actualHeight) { 1320 mActualHeight = actualHeight;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | PulseExpansionHandler.kt | 273 child.actualHeight = newHeight in <lambda>() 301 if (child.actualHeight == child.collapsedHeight) { in <lambda>() 305 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight) in <lambda>() 310 child.actualHeight = animation.animatedValue as Int in <lambda>()
|
D | LockscreenShadeTransitionController.kt | 930 child.actualHeight = (child.collapsedHeight + rubberband).toInt() in handleExpansion() 938 if (child.actualHeight == child.collapsedHeight) { in cancelChildExpansion() 942 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight) in cancelChildExpansion() 947 child.actualHeight = animation.animatedValue as Int in cancelChildExpansion()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableView.java | 216 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument 217 if (mActualHeight != actualHeight) { in setActualHeight() 218 mActualHeight = actualHeight; in setActualHeight() 226 public void setActualHeight(int actualHeight) { in setActualHeight() argument 227 setActualHeight(actualHeight, true /* notifyListeners */); in setActualHeight()
|
D | ExpandableOutlineView.java | 251 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument 253 super.setActualHeight(actualHeight, notifyListeners); in setActualHeight() 254 if (previousHeight != actualHeight) { in setActualHeight()
|
D | ActivatableNotificationView.java | 339 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument 340 super.setActualHeight(actualHeight, notifyListeners); in setActualHeight() 341 setPivotY(actualHeight / 2); in setActualHeight() 342 mBackgroundNormal.setActualHeight(actualHeight); in setActualHeight()
|
D | NotificationBackgroundView.java | 195 public void setActualHeight(int actualHeight) { in setActualHeight() argument 199 mActualHeight = actualHeight; in setActualHeight()
|
D | NotificationGuts.java | 356 public void setActualHeight(int actualHeight) { in setActualHeight() argument 357 mActualHeight = actualHeight; in setActualHeight()
|
D | ExpandableNotificationRow.java | 2467 int actualHeight = params.getBottom() - top; 2468 setActualHeight(actualHeight); 2508 mBackgroundNormal.setExpandAnimationSize(params.getWidth(), actualHeight);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | MediaContainerViewTest.kt | 34 mediaContainerView.actualHeight = 10 in testUpdateClipping_updatesClipHeight()
|
D | NotificationShelfTest.kt | 164 whenever(expandableView.actualHeight).thenReturn(20) in getAmountInShelf_lastViewBelowShelf_completelyInShelf() 194 whenever(expandableView.actualHeight).thenReturn(20) in getAmountInShelf_lastViewAlmostBelowShelf_completelyInShelf() 224 whenever(expandableView.actualHeight).thenReturn(25) in getAmountInShelf_lastViewHalfClippedByShelf_halfInShelf() 254 whenever(expandableView.actualHeight).thenReturn(10) in getAmountInShelf_lastViewAboveShelf_notInShelf()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | MessagingImageMessage.java | 289 public void setActualHeight(int actualHeight) { 290 mActualHeight = actualHeight;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationTransitionAnimatorController.kt | 88 val height = max(0, notification.actualHeight - notification.clipBottomAmount) in createAnimatorState()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/ |
D | QSTileViewImpl.kt | 382 val actualHeight = in <lambda>() constant 391 bottom = top + (actualHeight * constrainedSquishiness).toInt() in <lambda>() 392 scrollY = (actualHeight - height) / 2 in <lambda>() 393 maybeUpdateLongPressEffectHeight(actualHeight.toFloat()) in <lambda>()
|
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/ |
D | DialogFillUi.java | 202 final int actualHeight = serviceIcon.getMinimumHeight(); in setServiceIcon() local 205 + "(" + actualWidth + "x" + actualHeight + ")"); in setServiceIcon()
|