HomeSort by relevance Sort by last modified time
    Searched refs:mRemoteInputManager (Results 1 - 7 of 7) sorted by null

  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationRemoteInputManagerTest.java 48 private TestableNotificationRemoteInputManager mRemoteInputManager;
62 mRemoteInputManager = new TestableNotificationRemoteInputManager(mContext);
68 mRemoteInputManager.setUpWithPresenterForTest(mPresenter, mEntryManager, mCallback,
74 assertFalse(mRemoteInputManager.onRemoveNotification(mEntry));
75 assertTrue(mRemoteInputManager.getRemoteInputEntriesToRemoveOnCollapse().isEmpty());
81 assertTrue(mRemoteInputManager.onRemoveNotification(mEntry));
82 assertTrue(mRemoteInputManager.getRemoteInputEntriesToRemoveOnCollapse().equals(
89 mRemoteInputManager.onPerformRemoveNotification(mSbn, mEntry);
96 mRemoteInputManager.getRemoteInputEntriesToRemoveOnCollapse().add(mEntry);
97 mRemoteInputManager.removeRemoteInputEntriesKeptUntilCollapsed()
    [all...]
NotificationListenerTest.java 59 @Mock private NotificationRemoteInputManager mRemoteInputManager;
69 mRemoteInputManager);
NotificationEntryManagerTest.java 95 @Mock private NotificationRemoteInputManager mRemoteInputManager;
156 mDependency.injectTestDependency(NotificationRemoteInputManager.class, mRemoteInputManager);
170 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController);
216 verify(mRemoteInputManager).bindRow(entry.row);
245 verify(mRemoteInputManager).onUpdateNotification(mEntry);
267 verify(mRemoteInputManager).onRemoveNotification(mEntry);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationListener.java 41 private final NotificationRemoteInputManager mRemoteInputManager =
NotificationEntryManager.java 102 protected final NotificationRemoteInputManager mRemoteInputManager =
350 mRemoteInputManager.bindRow(row);
394 mRemoteInputManager.onPerformRemoveNotification(n, entry);
484 boolean ignoreEarliestRemovalTime = mRemoteInputManager.getController().isSpinning(key)
546 if (mRemoteInputManager.onRemoveNotification(entry)) {
626 if (mRemoteInputManager.getController().isSpinning(entry.key)) {
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
StatusBarTest.java 144 @Mock private NotificationRemoteInputManager mRemoteInputManager;
205 when(mRemoteInputManager.getController()).thenReturn(mRemoteInputController);
212 mRemoteInputManager, mock(NotificationGroupManager.class),
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBar.java 510 protected NotificationRemoteInputManager mRemoteInputManager;
630 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class);
    [all...]

Completed in 229 milliseconds