Home
last modified time | relevance | path

Searched refs:NotificationRemoteInputManager (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNonPhoneDependencyTest.java56 @Mock private NotificationRemoteInputManager.Callback mRemoteInputManagerCallback;
71 NotificationRemoteInputManager remoteInputManager = in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager()
72 Dependency.get(NotificationRemoteInputManager.class); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager()
DNotificationListenerTest.java59 @Mock private NotificationRemoteInputManager mRemoteInputManager;
68 mDependency.injectTestDependency(NotificationRemoteInputManager.class, in setUp()
DNotificationRemoteInputManagerTest.java39 @Mock private NotificationRemoteInputManager.Callback mCallback;
104 private class TestableNotificationRemoteInputManager extends NotificationRemoteInputManager {
DNotificationEntryManagerTest.java95 @Mock private NotificationRemoteInputManager mRemoteInputManager;
156 mDependency.injectTestDependency(NotificationRemoteInputManager.class, mRemoteInputManager); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSystemUIFactory.java42 import com.android.systemui.statusbar.NotificationRemoteInputManager;
141 providers.put(NotificationRemoteInputManager.class, in injectDependencies()
142 () -> new NotificationRemoteInputManager(context)); in injectDependencies()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationListener.java41 private final NotificationRemoteInputManager mRemoteInputManager =
42 Dependency.get(NotificationRemoteInputManager.class);
DNotificationPresenter.java30 NotificationRemoteInputManager.Callback,
DNotificationRemoteInputManager.java57 public class NotificationRemoteInputManager implements Dumpable { class
269 public NotificationRemoteInputManager(Context context) { in NotificationRemoteInputManager() method in NotificationRemoteInputManager
DNotificationEntryManager.java18 import static com.android.systemui.statusbar.NotificationRemoteInputManager.ENABLE_REMOTE_INPUT;
19 import static com.android.systemui.statusbar.NotificationRemoteInputManager
102 protected final NotificationRemoteInputManager mRemoteInputManager =
103 Dependency.get(NotificationRemoteInputManager.class);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java96 import com.android.systemui.statusbar.NotificationRemoteInputManager;
144 @Mock private NotificationRemoteInputManager mRemoteInputManager;
715 NotificationRemoteInputManager notificationRemoteInputManager, in TestableStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarWindowManager.java21 import static com.android.systemui.statusbar.NotificationRemoteInputManager.ENABLE_REMOTE_INPUT;
DStatusBar.java209 import com.android.systemui.statusbar.NotificationRemoteInputManager;
510 protected NotificationRemoteInputManager mRemoteInputManager;
630 mRemoteInputManager = Dependency.get(NotificationRemoteInputManager.class); in start()
4284 Intent fillInIntent, NotificationRemoteInputManager.ClickHandler defaultHandler) { in handleRemoteViewClick()