Searched refs:mSmartReplyController (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | SmartReplyControllerTest.java | 65 private SmartReplyController mSmartReplyController; field in SmartReplyControllerTest 82 mSmartReplyController = new SmartReplyController(mNotificationEntryManager, in setUp() 85 mSmartReplyController); in setUp() 88 mock(NotificationLockscreenUserManager.class), mSmartReplyController, in setUp() 105 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_updatesRemoteInput() 116 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_logsToStatusBar() 127 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_logsToStatusBar_modifiedBeforeSending() 139 mSmartReplyController.smartSuggestionsAdded(mEntry, TEST_CHOICE_COUNT, TEST_ACTION_COUNT, in testShowSmartSuggestions_logsToStatusBar() 149 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_reportsSending() 152 assertTrue(mSmartReplyController.isSendingSmartReply(mSbn.getKey())); in testSendSmartReply_reportsSending() [all …]
|
D | NotificationRemoteInputManagerTest.java | 57 @Mock private SmartReplyController mSmartReplyController; field in NotificationRemoteInputManagerTest 78 mLockscreenUserManager, mSmartReplyController, mEntryManager, in setUp() 129 when(mSmartReplyController.isSendingSmartReply(mEntry.key)).thenReturn(true); in testShouldExtendLifetime_smartReplySending()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManager.java | 116 private final SmartReplyController mSmartReplyController; field in NotificationRemoteInputManager 268 mSmartReplyController = smartReplyController; in NotificationRemoteInputManager() 284 mSmartReplyController.stopSending(entry); in NotificationRemoteInputManager() 293 mSmartReplyController.stopSending(entry); in NotificationRemoteInputManager() 343 mSmartReplyController.setCallback((entry, reply) -> { in setUpWithCallback() 511 return mSmartReplyController.isSendingSmartReply(entry.key); in shouldKeepForSmartReplyHistory() 684 mSmartReplyController.stopSending(entry); in setShouldManageLifetime()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationEntryManagerTest.java | 135 @Mock private SmartReplyController mSmartReplyController; field in NotificationEntryManagerTest 225 mDependency.injectTestDependency(SmartReplyController.class, mSmartReplyController); in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | Dependency.java | 273 @Inject Lazy<SmartReplyController> mSmartReplyController; field in Dependency 468 mProviders.put(SmartReplyController.class, mSmartReplyController::get); in start()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 91 private SmartReplyController mSmartReplyController; field in NotificationContentView 169 mSmartReplyController = Dependency.get(SmartReplyController.class); in NotificationContentView() 1309 mSmartReplyController.smartSuggestionsAdded(entry, numSmartReplies,
|