Home
last modified time | relevance | path

Searched refs:mStackScroller (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutTest.java474 mStackScroller.updateFooter(); in testUpdateFooter_noNotifications()
490 mStackScroller.updateFooter(); in testUpdateFooter_remoteInput()
505 mStackScroller.updateFooter(); in testUpdateFooter_withoutNotifications()
520 mStackScroller.updateFooter(); in testUpdateFooter_oneClearableNotification()
536 mStackScroller.updateFooter(); in testUpdateFooter_withoutHistory()
551 mStackScroller.updateFooter(); in testUpdateFooter_oneClearableNotification_beforeUserSetup()
567 mStackScroller.updateFooter(); in testUpdateFooter_oneNonClearableNotification()
595 mStackScroller.reinflateViews(); in testReInflatesFooterViews()
793 mStackScroller.setOwnScrollY(1); in testSetOwnScrollY_shadeNotClosing_scrollYChanges()
799 mStackScroller.setOwnScrollY(0); in testSetOwnScrollY_shadeNotClosing_scrollYChanges()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DNotificationsQuickSettingsContainer.java50 private View mStackScroller; field in NotificationsQuickSettingsContainer
85 mStackScroller = stackScroller; in setStackScroller()
119 mStackScroller.setLayoutParams(params); in setNotificationsMarginBottom()
172 if (mStackScroller.getVisibility() == View.VISIBLE) { in dispatchDraw()
173 mDrawingOrderedChildren.add(mStackScroller); in dispatchDraw()
174 mLayoutDrawingOrder.add(mStackScroller); in dispatchDraw()
217 if (mStackScroller == null || mQSContainer == null) { in applyBackScaling()
222 mStackScroller.getBoundsOnScreen(mBoundingBoxRect); in applyBackScaling()
237 mStackScroller.setPivotY(cy); in applyBackScaling()
238 mStackScroller.setScaleX(scale); in applyBackScaling()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCentralSurfacesImpl.java835 mStackScroller = mStackScrollerController.getView(); in CentralSurfacesImpl()
1670 mStackScroller, in startKeyguard()
1968 pw.print(" mStackScroller: " + CentralSurfaces.viewInfo(mStackScroller)); in dump()
1969 pw.print(" scroll " + mStackScroller.getScrollX() in dump()
1970 + "," + mStackScroller.getScrollY()); in dump()
1971 pw.println(" translationX " + mStackScroller.getTranslationX()); in dump()
1993 pw.println(" mStackScroller: " + mStackScroller + " (dump moved)"); in dump()
3223 private final NotificationStackScrollLayout mStackScroller;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DCentralSurfacesImplTest.java226 @Mock private NotificationStackScrollLayout mStackScroller; field in CentralSurfacesImplTest
403 when(mStackScrollerController.getView()).thenReturn(mStackScroller); in setup()
404 when(mStackScroller.generateLayoutParams(any())).thenReturn(new LayoutParams(0, 0)); in setup()