/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManagerTest.java | 66 private TestableNotificationRemoteInputManager mRemoteInputManager; field in NotificationRemoteInputManagerTest 77 mRemoteInputManager = new TestableNotificationRemoteInputManager(mContext, in setUp() 87 mRemoteInputManager.setUpWithPresenterForTest(mCallback, in setUp() 89 for (NotificationLifetimeExtender extender : mRemoteInputManager.getLifetimeExtenders()) { in setUp() 98 mRemoteInputManager.onPerformRemoveNotification(mEntry, mSbn.getKey()); in testPerformOnRemoveNotification() 138 assertEquals(mRemoteInputManager.getEntriesKeptForRemoteInputActive(), in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 141 mRemoteInputManager.onPanelCollapsed(); in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 143 assertTrue(mRemoteInputManager.getEntriesKeptForRemoteInputActive().isEmpty()); in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 149 mRemoteInputManager.rebuildNotificationWithRemoteInput(mEntry, "A Reply", false); in testRebuildWithRemoteInput_noExistingInputNoSpinner() 163 mRemoteInputManager.rebuildNotificationWithRemoteInput(mEntry, "A Reply", true); in testRebuildWithRemoteInput_noExistingInputWithSpinner() [all …]
|
D | SmartReplyControllerTest.java | 66 private NotificationRemoteInputManager mRemoteInputManager; field in SmartReplyControllerTest 87 mRemoteInputManager = new NotificationRemoteInputManager(mContext, in setUp() 92 mRemoteInputManager.setUpWithCallback(mCallback, mDelegate); in setUp()
|
D | NotificationListenerTest.java | 62 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationListenerTest 73 mRemoteInputManager); in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationAlertingManager.java | 45 private final NotificationRemoteInputManager mRemoteInputManager; field in NotificationAlertingManager 61 mRemoteInputManager = remoteInputManager; in NotificationAlertingManager() 164 mRemoteInputManager.getController().isSpinning(key) in stopAlerting()
|
D | NotificationEntryManager.java | 88 private NotificationRemoteInputManager mRemoteInputManager; field in NotificationEntryManager 143 if (mRemoteInputManager == null) { in getRemoteInputManager() 144 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in getRemoteInputManager() 146 return mRemoteInputManager; in getRemoteInputManager()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | AutoHideController.java | 47 private final NotificationRemoteInputManager mRemoteInputManager; field in AutoHideController 75 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in AutoHideController() 200 shouldAutoHide &= !mRemoteInputManager.getController().isRemoteInputActive(); in checkUserAutoHide()
|
D | StatusBarNotificationActivityStarter.java | 84 private final NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarter 145 mRemoteInputManager = remoteInputManager; in StatusBarNotificationActivityStarter() 178 RemoteInputController controller = mRemoteInputManager.getController(); in onNotificationClicked() 347 || mRemoteInputManager.isNotificationKeptForRemoteInputHistory( in handleNotificationClickAfterPanelCollapsed()
|
D | StatusBar.java | 488 protected NotificationRemoteInputManager mRemoteInputManager; field in StatusBar 1069 mRemoteInputManager.getController().addCallback(mStatusBarWindowController); in setUpPresenter() 1081 mRemoteInputManager, mStatusBarRemoteInputCallback, mGroupManager, in setUpPresenter() 1119 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in getDependencies() 1209 mRemoteInputManager.checkRemoteInputOutside(event); in getStatusBarWindowTouchListener() 1300 mRemoteInputManager.getController().addCallback(mStatusBarKeyguardViewManager); in startKeyguard() 1634 mRemoteInputManager.onPanelCollapsed(); in onHeadsUpPinnedModeChanged() 1673 mRemoteInputManager.onPanelCollapsed(); in setPanelExpanded() 2648 if (mRemoteInputManager.getController() != null) { 2649 mRemoteInputManager.getController().closeRemoteInputs(); [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationRowBinderImpl.java | 76 private NotificationRemoteInputManager mRemoteInputManager; field in NotificationRowBinderImpl 97 if (mRemoteInputManager == null) { in getRemoteInputManager() 98 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in getRemoteInputManager() 100 return mRemoteInputManager; in getRemoteInputManager()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterTest.java | 101 private NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarterTest 136 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 168 mock(IDreamManager.class), mRemoteInputManager, in setUp()
|
D | StatusBarTest.java | 157 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in StatusBarTest 258 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setup() 264 mKeyguardViewMediator, mRemoteInputManager, mock(NotificationGroupManager.class), in setup() 808 mRemoteInputManager = notificationRemoteInputManager; in TestableStatusBar()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutTest.java | 118 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationStackScrollLayoutTest 149 mRemoteInputManager); in setUp() 151 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationEntryManagerTest.java | 130 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationEntryManagerTest 219 mDependency.injectTestDependency(NotificationRemoteInputManager.class, mRemoteInputManager); in setUp() 232 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 287 verify(mRemoteInputManager).bindRow(entry.getRow()); in testAddNotification()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationListener.java | 53 private final NotificationRemoteInputManager mRemoteInputManager = field in NotificationListener
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | SmartReplyView.java | 69 private final NotificationRemoteInputManager mRemoteInputManager; field in SmartReplyView 124 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in SmartReplyView() 279 smartReplyView.mRemoteInputManager.activateRemoteInput(b, in inflateReplyButton()
|
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/statusbar/car/ |
D | CarStatusBar.java | 434 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in getDependencies()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 484 private final NotificationRemoteInputManager mRemoteInputManager = field in NotificationStackScrollLayout 694 && !mRemoteInputManager.getController().isRemoteInputActive(); in updateFooter()
|