Home
last modified time | relevance | path

Searched refs:mRemoteInputManager (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationRemoteInputManagerTest.java62 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 …]
DSmartReplyControllerTest.java65 private NotificationRemoteInputManager mRemoteInputManager; field in SmartReplyControllerTest
85 mRemoteInputManager = new NotificationRemoteInputManager(mContext, in setUp()
89 mRemoteInputManager.setUpWithCallback(mCallback, mDelegate); in setUp()
DNotificationListenerTest.java62 @Mock private NotificationRemoteInputManager mRemoteInputManager; field in NotificationListenerTest
73 mRemoteInputManager); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationAlertingManager.java49 private final NotificationRemoteInputManager mRemoteInputManager; field in NotificationAlertingManager
67 mRemoteInputManager = remoteInputManager; in NotificationAlertingManager()
183 mRemoteInputManager.getController().isSpinning(key) in stopAlerting()
DNotificationEntryManager.java84 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/
DAutoHideController.java47 private final NotificationRemoteInputManager mRemoteInputManager; field in AutoHideController
75 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in AutoHideController()
198 shouldAutoHide &= !mRemoteInputManager.getController().isRemoteInputActive(); in checkUserAutoHide()
DStatusBarNotificationActivityStarter.java84 private final NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarter
145 mRemoteInputManager = remoteInputManager; in StatusBarNotificationActivityStarter()
178 RemoteInputController controller = mRemoteInputManager.getController(); in onNotificationClicked()
347 || mRemoteInputManager.isNotificationKeptForRemoteInputHistory( in handleNotificationClickAfterPanelCollapsed()
DStatusBar.java472 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/
DNotificationRowBinderImpl.java73 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/
DStatusBarNotificationActivityStarterTest.java101 private NotificationRemoteInputManager mRemoteInputManager; field in StatusBarNotificationActivityStarterTest
136 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp()
170 mock(IDreamManager.class), mRemoteInputManager, in setUp()
DStatusBarTest.java156 @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/
DNotificationEntryManagerTest.java128 @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/
DNotificationStackScrollLayoutTest.java115 @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/
DNotificationListener.java49 private final NotificationRemoteInputManager mRemoteInputManager = field in NotificationListener
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DSmartReplyView.java68 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/
DNotificationStackScrollLayout.java487 private final NotificationRemoteInputManager mRemoteInputManager = field in NotificationStackScrollLayout
683 && !mRemoteInputManager.getController().isRemoteInputActive(); in updateFooter()