/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManagerTest.java | 71 private TestableNotificationRemoteInputManager mRemoteInputManager; field in NotificationRemoteInputManagerTest 81 mRemoteInputManager = new TestableNotificationRemoteInputManager(mContext, in setUp() 98 mRemoteInputManager.setUpWithPresenterForTest(mCallback, in setUp() 100 for (NotificationLifetimeExtender extender : mRemoteInputManager.getLifetimeExtenders()) { in setUp() 109 mRemoteInputManager.onPerformRemoveNotification(mEntry, mEntry.getKey()); in testPerformOnRemoveNotification() 150 assertEquals(mRemoteInputManager.getEntriesKeptForRemoteInputActive(), in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 153 mRemoteInputManager.onPanelCollapsed(); in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 155 assertTrue(mRemoteInputManager.getEntriesKeptForRemoteInputActive().isEmpty()); in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 164 mRemoteInputManager.rebuildNotificationWithRemoteInputInserted( in testRebuildWithRemoteInput_noExistingInput_image() 177 mRemoteInputManager.rebuildNotificationWithRemoteInputInserted( in testRebuildWithRemoteInput_noExistingInputNoSpinner() [all …]
|
D | SmartReplyControllerTest.java | 68 private NotificationRemoteInputManager mRemoteInputManager; field in SmartReplyControllerTest 91 mRemoteInputManager = new NotificationRemoteInputManager(mContext, in setUp() 99 mRemoteInputManager.setUpWithCallback(mCallback, mDelegate); in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/ |
D | HeadsUpController.java | 49 private final NotificationRemoteInputManager mRemoteInputManager; field in HeadsUpController 67 mRemoteInputManager = remoteInputManager; in HeadsUpController() 155 mRemoteInputManager.getController().isSpinning(key) in stopAlerting()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinator.java | 65 private final NotificationRemoteInputManager mRemoteInputManager; field in HeadsUpCoordinator 84 mRemoteInputManager = remoteInputManager; in HeadsUpCoordinator() 152 mRemoteInputManager.getController().isSpinning(entryKey)
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarter.java | 109 private final NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarter 183 mRemoteInputManager = remoteInputManager; in StatusBarNotificationActivityStarter() 233 RemoteInputController controller = mRemoteInputManager.getController(); in onNotificationClicked() 388 if (shouldAutoCancel || mRemoteInputManager.isNotificationKeptForRemoteInputHistory( in handleNotificationClickAfterPanelCollapsed() 650 private final NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarter.Builder 718 mRemoteInputManager = remoteInputManager; in Builder() 782 mRemoteInputManager, in build()
|
D | StatusBar.java | 574 private final NotificationRemoteInputManager mRemoteInputManager; field in StatusBar 842 mRemoteInputManager = remoteInputManager; in StatusBar() 1234 return !mRemoteInputManager.getController().isRemoteInputActive(); in makeStatusBarView() 1465 mRemoteInputManager.getController().addCallback(mNotificationShadeWindowController); in setUpPresenter() 1528 mRemoteInputManager.checkRemoteInputOutside(event); in getStatusBarWindowTouchListener() 1640 mRemoteInputManager.getController().addCallback(mStatusBarKeyguardViewManager); in startKeyguard() 1962 mRemoteInputManager.onPanelCollapsed(); in onHeadsUpPinnedModeChanged() 2000 mRemoteInputManager.onPanelCollapsed(); in setPanelExpanded() 3062 if (mRemoteInputManager.getController() != null) { 3063 mRemoteInputManager.getController().closeRemoteInputs(); [all …]
|
D | NotificationPanelViewController.java | 326 private final NotificationRemoteInputManager mRemoteInputManager; field in NotificationPanelViewController 826 mRemoteInputManager = remoteInputManager; in NotificationPanelViewController() 1561 && !mRemoteInputManager.getController().isRemoteInputActive(); in isQsExpansionEnabled()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinatorTest.java | 74 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in HeadsUpCoordinatorTest 84 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 90 mRemoteInputManager, in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationEntryManagerInflationTest.java | 131 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationEntryManagerInflationTest 186 () -> mRemoteInputManager, in setUp() 211 mRemoteInputManager, in setUp() 279 mRemoteInputManager, in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterTest.java | 112 private NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarterTest 156 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 212 mRemoteInputManager, in setUp()
|
D | StatusBarTest.java | 203 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in StatusBarTest 335 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setup() 391 mRemoteInputManager, in setup()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollerControllerTest.java | 130 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationStackScrollerControllerTest 148 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 184 mRemoteInputManager, in setUp()
|
D | NotificationStackScrollLayoutTest.java | 101 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationStackScrollLayoutTest 134 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 162 mStackScroller.setRemoteInputManager(mRemoteInputManager); in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentInflater.java | 73 private final NotificationRemoteInputManager mRemoteInputManager; field in NotificationContentInflater 88 mRemoteInputManager = remoteInputManager; in NotificationContentInflater() 134 mRemoteInputManager.getRemoteViewsOnClickHandler(), in bindContent() 174 mRemoteInputManager.getRemoteViewsOnClickHandler(), in inflateNotificationViews()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationEntryManagerTest.java | 125 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationEntryManagerTest 195 () -> mRemoteInputManager, in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutController.java | 165 private final NotificationRemoteInputManager mRemoteInputManager; field in NotificationStackScrollLayoutController 664 mRemoteInputManager = remoteInputManager; in NotificationStackScrollLayoutController() 680 mView.setRemoteInputManager(mRemoteInputManager); in attach()
|
D | NotificationStackScrollLayout.java | 447 private NotificationRemoteInputManager mRemoteInputManager; field in NotificationStackScrollLayout 684 RemoteInputController remoteInputController = mRemoteInputManager.getController(); in updateFooter() 5346 mRemoteInputManager = remoteInputManager; in setRemoteInputManager()
|