Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DDragDownHelperTest.kt73 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()
DPulseExpansionHandlerTest.kt85 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/
DMediaContainerView.kt54 if (clipHeight != actualHeight) { in updateClipping()
55 clipHeight = actualHeight in updateClipping()
DStackStateAnimator.java428 int actualHeight = changingView.getActualHeight(); in processAnimationEvents() local
434 - (ownPosition + actualHeight / 2.0f)) * 2 / in processAnimationEvents()
435 actualHeight); in processAnimationEvents()
DNotificationChildrenContainer.java1316 public void setActualHeight(int actualHeight) {
1320 mActualHeight = actualHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DPulseExpansionHandler.kt273 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>()
DLockscreenShadeTransitionController.kt930 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/
DExpandableView.java216 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()
DExpandableOutlineView.java251 public void setActualHeight(int actualHeight, boolean notifyListeners) { in setActualHeight() argument
253 super.setActualHeight(actualHeight, notifyListeners); in setActualHeight()
254 if (previousHeight != actualHeight) { in setActualHeight()
DActivatableNotificationView.java339 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()
DNotificationBackgroundView.java195 public void setActualHeight(int actualHeight) { in setActualHeight() argument
199 mActualHeight = actualHeight; in setActualHeight()
DNotificationGuts.java356 public void setActualHeight(int actualHeight) { in setActualHeight() argument
357 mActualHeight = actualHeight; in setActualHeight()
DExpandableNotificationRow.java2467 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/
DMediaContainerViewTest.kt34 mediaContainerView.actualHeight = 10 in testUpdateClipping_updatesClipHeight()
DNotificationShelfTest.kt164 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/
DMessagingImageMessage.java289 public void setActualHeight(int actualHeight) {
290 mActualHeight = actualHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorController.kt88 val height = max(0, notification.actualHeight - notification.clipBottomAmount) in createAnimatorState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSTileViewImpl.kt382 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/
DDialogFillUi.java202 final int actualHeight = serviceIcon.getMinimumHeight(); in setServiceIcon() local
205 + "(" + actualWidth + "x" + actualHeight + ")"); in setServiceIcon()