/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManagerTest.java | 62 private TestableNotificationRemoteInputManager mRemoteInputManager; field in NotificationRemoteInputManagerTest 73 mRemoteInputManager = new TestableNotificationRemoteInputManager(mContext, in setUp() 82 mRemoteInputManager.setUpWithPresenterForTest(mCallback, in setUp() 84 for (NotificationLifetimeExtender extender : mRemoteInputManager.getLifetimeExtenders()) { in setUp() 93 mRemoteInputManager.onPerformRemoveNotification(mEntry, mSbn.getKey()); in testPerformOnRemoveNotification() 133 assertEquals(mRemoteInputManager.getEntriesKeptForRemoteInputActive(), in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 136 mRemoteInputManager.onPanelCollapsed(); in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 138 assertTrue(mRemoteInputManager.getEntriesKeptForRemoteInputActive().isEmpty()); in testNotificationWithRemoteInputActiveIsRemovedOnCollapse() 144 mRemoteInputManager.rebuildNotificationWithRemoteInput(mEntry, "A Reply", false); in testRebuildWithRemoteInput_noExistingInputNoSpinner() 158 mRemoteInputManager.rebuildNotificationWithRemoteInput(mEntry, "A Reply", true); in testRebuildWithRemoteInput_noExistingInputWithSpinner() [all …]
|
D | SmartReplyControllerTest.java | 65 private NotificationRemoteInputManager mRemoteInputManager; field in SmartReplyControllerTest 85 mRemoteInputManager = new NotificationRemoteInputManager(mContext, in setUp() 89 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 | 49 private final NotificationRemoteInputManager mRemoteInputManager; field in NotificationAlertingManager 67 mRemoteInputManager = remoteInputManager; in NotificationAlertingManager() 183 mRemoteInputManager.getController().isSpinning(key) in stopAlerting()
|
D | NotificationEntryManager.java | 84 private NotificationRemoteInputManager mRemoteInputManager; field in NotificationEntryManager 139 if (mRemoteInputManager == null) { in getRemoteInputManager() 140 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in getRemoteInputManager() 142 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() 198 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 | 472 protected NotificationRemoteInputManager mRemoteInputManager; field in StatusBar 619 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in start() 1065 mRemoteInputManager.getController().addCallback(mStatusBarWindowController); in setUpPresenter() 1077 mRemoteInputManager, mStatusBarRemoteInputCallback, mGroupManager, in setUpPresenter() 1138 mRemoteInputManager.checkRemoteInputOutside(event); in getStatusBarWindowTouchListener() 1226 mRemoteInputManager.getController().addCallback(mStatusBarKeyguardViewManager); in startKeyguard() 1550 mRemoteInputManager.onPanelCollapsed(); in onHeadsUpPinnedModeChanged() 1598 mRemoteInputManager.onPanelCollapsed(); in setPanelExpanded() 2546 if (mRemoteInputManager.getController() != null) { 2547 mRemoteInputManager.getController().closeRemoteInputs(); [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationRowBinderImpl.java | 73 private NotificationRemoteInputManager mRemoteInputManager; field in NotificationRowBinderImpl 90 if (mRemoteInputManager == null) { in getRemoteInputManager() 91 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in getRemoteInputManager() 93 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() 170 mock(IDreamManager.class), mRemoteInputManager, in setUp()
|
D | StatusBarTest.java | 156 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in StatusBarTest 254 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setup() 260 mKeyguardViewMediator, mRemoteInputManager, mock(NotificationGroupManager.class), in setup() 810 mRemoteInputManager = notificationRemoteInputManager; in TestableStatusBar()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationEntryManagerTest.java | 128 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationEntryManagerTest 217 mDependency.injectTestDependency(NotificationRemoteInputManager.class, mRemoteInputManager); in setUp() 230 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 284 verify(mRemoteInputManager).bindRow(entry.getRow()); in testAddNotification()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutTest.java | 115 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationStackScrollLayoutTest 141 mRemoteInputManager); in setUp() 143 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationListener.java | 49 private final NotificationRemoteInputManager mRemoteInputManager = field in NotificationListener
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | SmartReplyView.java | 68 private final NotificationRemoteInputManager mRemoteInputManager; field in SmartReplyView 123 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in SmartReplyView() 276 smartReplyView.mRemoteInputManager.activateRemoteInput(b, in inflateReplyButton()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 487 private final NotificationRemoteInputManager mRemoteInputManager = field in NotificationStackScrollLayout 683 && !mRemoteInputManager.getController().isRemoteInputActive(); in updateFooter()
|