/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManager.java | 130 protected RemoteInputController mRemoteInputController; field in NotificationRemoteInputManager 332 mRemoteInputController = new RemoteInputController(delegate, mRemoteInputUriController); in setUpWithCallback() 333 mRemoteInputController.addCallback(new RemoteInputController.Callback() { in setUpWithCallback() 566 return mRemoteInputController; in getController() 574 if (mRemoteInputController.isRemoteInputActive(entry)) { in onPerformRemoveNotification() 576 mRemoteInputController.removeRemoteInput(entry, null); in onPerformRemoveNotification() 583 mRemoteInputController.removeRemoteInput(entry, null); in onPanelCollapsed() 599 return (mRemoteInputController.isSpinning(entry.getKey()) in shouldKeepForRemoteInputHistory() 633 && mRemoteInputController.isRemoteInputActive()) { in checkRemoteInputOutside() 634 mRemoteInputController.closeRemoteInputs(); in checkRemoteInputOutside() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinatorTest.java | 75 @Mock private RemoteInputController mRemoteInputController; field in HeadsUpCoordinatorTest 84 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 218 when(mRemoteInputController.isSpinning(any())).thenReturn(false); in testOnEntryRemovedRemovesHeadsUpNotification()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutTest.java | 102 @Mock private RemoteInputController mRemoteInputController; field in NotificationStackScrollLayoutTest 134 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp() 307 when(mRemoteInputController.isRemoteInputActive()).thenReturn(true); in testUpdateFooter_remoteInput()
|
D | NotificationStackScrollerControllerTest.java | 131 @Mock private RemoteInputController mRemoteInputController; field in NotificationStackScrollerControllerTest 148 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterTest.java | 114 private RemoteInputController mRemoteInputController; field in StatusBarNotificationActivityStarterTest 156 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setUp()
|
D | NotificationPanelViewTest.java | 299 private RemoteInputController mRemoteInputController; field in NotificationPanelViewTest 400 when(mNotificationRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setup() 401 when(mRemoteInputController.isRemoteInputActive()).thenReturn(false); in setup()
|
D | StatusBarTest.java | 204 @Mock private RemoteInputController mRemoteInputController; field in StatusBarTest 335 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController); in setup()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManagerTest.java | 291 mRemoteInputController = controller; in setUpWithPresenterForTest()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 125 private RemoteInputController mRemoteInputController; field in NotificationContentView 1169 if (mRemoteInputController == null) { 1239 mContext, actionContainer, entry, mRemoteInputController); 1553 mRemoteInputController = r; in setRemoteInputController()
|