/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutTest.java | 103 private NotificationStackScrollLayout mStackScroller; // Normally test this field in NotificationStackScrollLayoutTest 166 mStackScroller = spy(mStackScrollerInternal); in setUp() 167 mStackScroller.setShelf(notificationShelf); in setUp() 168 mStackScroller.setStatusBar(mBar); in setUp() 169 mStackScroller.setScrimController(mock(ScrimController.class)); in setUp() 170 mStackScroller.setHeadsUpManager(mHeadsUpManager); in setUp() 171 mStackScroller.setGroupManager(mGroupManager); in setUp() 172 mStackScroller.setEmptyShadeView(mEmptyShadeView); in setUp() 173 mStackScroller.setIconAreaController(mNotificationIconAreaController); in setUp() 197 mStackScroller.setDimmed(true /* dimmed */, false /* animate */); in testNotDimmedOnKeyguard() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationsQuickSettingsContainer.java | 48 private NotificationStackScrollLayout mStackScroller; field in NotificationsQuickSettingsContainer 66 mStackScroller = findViewById(R.id.notification_stack_scroller); in onFinishInflate() 67 mStackScrollerMargin = ((LayoutParams) mStackScroller.getLayoutParams()).bottomMargin; in onFinishInflate() 90 reloadWidth(mStackScroller, R.dimen.notification_panel_width); in onConfigurationChanged() 115 View stackQsTop = qsBottom ? mStackScroller : mQsFrame; in drawChild() 116 View stackQsBottom = !qsBottom ? mStackScroller : mQsFrame; in drawChild() 124 } else if (child == mStackScroller) { in drawChild() 176 setBottomMargin(mStackScroller, 0); in setCustomizerShowing() 179 setBottomMargin(mStackScroller, mStackScrollerMargin); in setCustomizerShowing() 181 mStackScroller.setQsCustomizerShowing(isShowing); in setCustomizerShowing()
|
D | HeadsUpAppearanceController.java | 49 private final NotificationStackScrollLayout mStackScroller; field in HeadsUpAppearanceController 112 mStackScroller = stackScroller; in HeadsUpAppearanceController() 117 mStackScroller.addOnExpandedHeightListener(mSetExpandedHeight); in HeadsUpAppearanceController() 118 mStackScroller.addOnLayoutChangeListener(mStackScrollLayoutChangeListener); in HeadsUpAppearanceController() 119 mStackScroller.setHeadsUpAppearanceController(this); in HeadsUpAppearanceController() 133 mStackScroller.requestLayout(); in HeadsUpAppearanceController() 147 mStackScroller.removeOnExpandedHeightListener(mSetExpandedHeight); in destroy() 148 mStackScroller.removeOnLayoutChangeListener(mStackScrollLayoutChangeListener); in destroy() 192 if (mStackScroller.getDisplay() != null) { in getRtlTranslation() 193 mStackScroller.getDisplay().getRealSize(mPoint); in getRtlTranslation() [all …]
|
D | StatusBar.java | 795 mStackScroller = mStatusBarWindow.findViewById(R.id.notification_stack_scroller); in makeStatusBarView() 797 NotificationListContainer notifListContainer = (NotificationListContainer) mStackScroller; in makeStatusBarView() 1044 (NotificationListContainer) mStackScroller); in setUpPresenter() 1052 mHeadsUpManager, mStatusBarWindow, mStackScroller, mDozeScrimController, in setUpPresenter() 1059 (NotificationListContainer) mStackScroller, in setUpPresenter() 1151 R.layout.status_bar_notification_shelf, mStackScroller, false); in inflateShelf() 1603 return mStackScroller; in getNotificationScrollLayout() 2273 pw.println(" mStackScroller: " + viewInfo(mStackScroller)); in dump() 2274 pw.println(" mStackScroller: " + viewInfo(mStackScroller) in dump() 2275 + " scroll " + mStackScroller.getScrollX() in dump() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationWakeUpCoordinator.kt | 52 private lateinit var mStackScroller: NotificationStackScrollLayout variable in com.android.systemui.statusbar.notification.NotificationWakeUpCoordinator 93 mStackScroller = stackScroller in setStackScroller() 147 mStackScroller.setDozeAmount(mDozeAmount) in onDozeAmountChanged() 191 return mStackScroller.pulseHeight in getWakeUpHeight() 197 mStackScroller.setDarkAmount(linearAmount, amount) in updateDarkAmount() 201 mStackScroller.notifyDarkAnimationStart(!awake) in notifyAnimationStart() 211 return mStackScroller.setPulseHeight(height) in setPulseHeight() 219 mStackScroller.wakeUpFromPulse(); in setWakingUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpAppearanceControllerTest.java | 50 private final NotificationStackScrollLayout mStackScroller = field in HeadsUpAppearanceControllerTest 74 mStackScroller, in setUp() 148 mStackScroller, in testHeaderReadFromOldController() 168 reset(mStackScroller); in testDestroy() 175 verify(mStackScroller).removeOnExpandedHeightListener(any()); in testDestroy() 176 verify(mStackScroller).removeOnLayoutChangeListener(any()); in testDestroy()
|
D | StatusBarTest.java | 137 @Mock private NotificationStackScrollLayout mStackScroller; field in StatusBarTest 234 when(mStackScroller.generateLayoutParams(any())).thenReturn(new LayoutParams(0, 0)); in setup() 237 when(mStackScroller.getActivatedChild()).thenReturn(null); in setup() 256 mKeyguardIndicationController, mStackScroller, mHeadsUpManager, in setup() 274 mEntryManager.setUpForTest(mock(NotificationPresenter.class), mStackScroller, in setup() local 277 mNotificationLogger.setUpWithContainer(mStackScroller); in setup() 796 mStackScroller = stack; in TestableStatusBar()
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/ |
D | TaskStackView.java | 143 private TaskStackViewScroller mStackScroller; field in TaskStackView 258 mStackScroller = new TaskStackViewScroller(context, this, mLayoutAlgorithm); in TaskStackView() 259 mTouchHandler = new TaskStackViewTouchHandler(context, this, mStackScroller); in TaskStackView() 330 mStackScroller.reset(); in onReload() 365 mStackScroller.setStackScrollToInitialState(); in updateToInitialState() 544 mStackScroller.getStackScroll(), targetStackScroll, mIgnoreTasks, in bindVisibleTaskViews() 655 bindVisibleTaskViews(mStackScroller.getStackScroll(), ignoreTaskOverrides); in relayoutTaskViews() 715 mLayoutAlgorithm.getStackTransform(task, mStackScroller.getStackScroll(), in getCurrentTaskTransforms() 830 mStackScroller.boundScroll(); in updateLayoutAlgorithm() 847 return mStackScroller; in getScroller() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | PulseExpansionHandler.kt | 66 private lateinit var mStackScroller: NotificationStackScrollLayout in <lambda>() variable 246 mStackScroller.getLocationOnScreen(mTemp2) in <lambda>() 249 val childAtRawPosition = mStackScroller.getChildAtRawPosition(totalX, totalY) in <lambda>() 260 mStackScroller = notificationStackScroller in <lambda>()
|
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/statusbar/car/ |
D | CarStatusBar.java | 857 pw.println(" mStackScroller: " + viewInfo(mStackScroller)); in dump() 858 pw.println(" mStackScroller: " + viewInfo(mStackScroller) in dump() 859 + " scroll " + mStackScroller.getScrollX() in dump() 860 + "," + mStackScroller.getScrollY()); in dump()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationGutsManagerTest.java | 105 @Mock private NotificationStackScrollLayout mStackScroller; field in NotificationGutsManagerTest 124 mGutsManager.setUpWithPresenter(mPresenter, mStackScroller, in setUp()
|