/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentViewTest.kt | 74 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/ |
D | HeadsUpAppearanceControllerTest.java | 195 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/ |
D | HeadsUpAppearanceController.java | 378 public void setAppearFraction(float expandedHeight, float appearFraction) { in setAppearFraction() argument 379 boolean changed = expandedHeight != mExpandedHeight; in setAppearFraction() 382 mExpandedHeight = expandedHeight; in setAppearFraction()
|
D | HeadsUpTouchHelper.java | 207 void startExpand(float newX, float newY, boolean startTracking, float expandedHeight);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | NotificationPanelViewController.java | 2658 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 …]
|
D | QuickSettingsControllerImpl.java | 934 void setShadeExpansion(float expandedHeight, float expandedFraction) { in setShadeExpansion() argument 935 mShadeExpandedHeight = expandedHeight; in setShadeExpansion()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
D | NotificationPanelViewControllerWithCoroutinesTest.kt | 238 mNotificationPanelViewController.expandedHeight = transitionDistance.toFloat() in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutController.java | 1480 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/ |
D | NotificationStackScrollLayoutTest.java | 380 mStackScroller.addOnExpandedHeightChangedListener((expandedHeight, appear) -> { in testSetExpandedHeight_withSplitShade_doesntInterpolateStackHeight() argument
|