Home
last modified time | relevance | path

Searched refs:expandedHeight (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationContentViewTest.kt74 private val expandedHeight = px(com.android.systemui.res.R.dimen.notification_max_height) in <lambda>() constant in com.android.systemui.statusbar.notification.row.NotificationContentViewTest
234 whenever(row.intrinsicHeight).thenReturn(expandedHeight) in <lambda>()
235 view.contentHeight = expandedHeight in <lambda>()
289 val mockExpanded = createMockNotificationHeaderView(expandedHeight, mockExpandedEB) in <lambda>()
335 val mockExpanded = spy(createViewWithHeight(expandedHeight)) in <lambda>()
364 val mockExpanded = spy(createViewWithHeight(expandedHeight)) in <lambda>()
623 spy(createViewWithHeight(expandedHeight)).apply { in <lambda>()
636 expandedView: View = createViewWithHeight(expandedHeight), in <lambda>()
640 val height = if (isSystemExpanded) expandedHeight else contractedHeight in <lambda>()
650 /* maxHeight= */ expandedHeight in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DHeadsUpAppearanceControllerTest.java195 float expandedHeight = 400f; in constructor_animationValuesUpdated() local
197 when(mStackScrollerController.getExpandedHeight()).thenReturn(expandedHeight); in constructor_animationValuesUpdated()
217 assertEquals(expandedHeight, newController.mExpandedHeight, 0.0f); in constructor_animationValuesUpdated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpAppearanceController.java378 public void setAppearFraction(float expandedHeight, float appearFraction) { in setAppearFraction() argument
379 boolean changed = expandedHeight != mExpandedHeight; in setAppearFraction()
382 mExpandedHeight = expandedHeight; in setAppearFraction()
DHeadsUpTouchHelper.java207 void startExpand(float newX, float newY, boolean startTracking, float expandedHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationPanelViewController.java2658 private void onHeightUpdated(float expandedHeight) { in onHeightUpdated() argument
2659 if (expandedHeight <= 0) { in onHeightUpdated()
2684 || (!mHeadsUpManager.isTrackingHeadsUp() || expandedHeight > mHeadsUpStartHeight); in onHeightUpdated()
2691 qsExpansionFraction = expandedHeight / (getMaxPanelHeight()); in onHeightUpdated()
2700 qsExpansionFraction = (expandedHeight - panelHeightQsCollapsed) in onHeightUpdated()
2708 updateExpandedHeight(expandedHeight); in onHeightUpdated()
3144 private void updateExpandedHeight(float expandedHeight) { in updateExpandedHeight() argument
3151 expandedHeight = getMaxPanelHeight(); in updateExpandedHeight()
3154 mNotificationStackScrollLayoutController.setExpandedHeight(expandedHeight); in updateExpandedHeight()
3802 float expandedHeight) {
[all …]
DQuickSettingsControllerImpl.java934 void setShadeExpansion(float expandedHeight, float expandedFraction) { in setShadeExpansion() argument
935 mShadeExpandedHeight = expandedHeight; in setShadeExpansion()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DNotificationPanelViewControllerWithCoroutinesTest.kt238 mNotificationPanelViewController.expandedHeight = transitionDistance.toFloat() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java1480 public void setExpandedHeight(float expandedHeight) { in setExpandedHeight() argument
1482 mView.setExpandedHeight(expandedHeight); in setExpandedHeight()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java380 mStackScroller.addOnExpandedHeightChangedListener((expandedHeight, appear) -> { in testSetExpandedHeight_withSplitShade_doesntInterpolateStackHeight() argument