Home
last modified time | relevance | path

Searched refs:mSmartReplyController (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DSmartReplyControllerTest.java67 private SmartReplyController mSmartReplyController; field in SmartReplyControllerTest
79 mSmartReplyController = new SmartReplyController( in setUp()
89 mSmartReplyController); in setUp()
117 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_updatesRemoteInput()
127 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_logsToStatusBar()
138 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_logsToStatusBar_modifiedBeforeSending()
150 mSmartReplyController.smartSuggestionsAdded(mEntry, TEST_CHOICE_COUNT, TEST_ACTION_COUNT, in testShowSmartSuggestions_logsToStatusBar()
160 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_reportsSending()
163 assertTrue(mSmartReplyController.isSendingSmartReply(mSbn.getKey())); in testSendSmartReply_reportsSending()
168 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendingSmartReply_afterRemove_shouldReturnFalse()
[all …]
DNotificationRemoteInputManagerTest.java65 @Mock private SmartReplyController mSmartReplyController; field in NotificationRemoteInputManagerTest
83 mSmartReplyController, in setUp()
131 when(mSmartReplyController.isSendingSmartReply(mEntry.getKey())).thenReturn(true); in testShouldExtendLifetime_smartReplySending()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DRemoteInputCoordinator.kt71 private val mSmartReplyController: SmartReplyController constant
127 mSmartReplyController.stopSending(entry) in onEntryUpdated()
148 mSmartReplyController.stopSending(entry) in onEntryUpdated()
157 mSmartReplyController.stopSending(entry) in onEntryRemoved()
227 mSmartReplyController.setCallback(this::onSmartReplySent) in setRemoteInputController()
255 mSmartReplyController.stopSending(entry) in queryShouldExtendLifetime()
263 mSmartReplyController.stopSending(entry) in onCanceledLifetimeExtension()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowController.java111 private final SmartReplyController mSmartReplyController; field in ExpandableNotificationRowController
265 mSmartReplyController = smartReplyController; in ExpandableNotificationRowController()
299 mSmartReplyController, in init()
DNotificationContentView.java120 private SmartReplyController mSmartReplyController; field in NotificationContentView
219 mSmartReplyController = smartReplyController; in initialize()
1629 mSmartReplyController.smartSuggestionsAdded(mNotificationEntry, numSmartReplies,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationRemoteInputManager.java98 private final SmartReplyController mSmartReplyController; field in NotificationRemoteInputManager
277 mSmartReplyController = smartReplyController; in NotificationRemoteInputManager()
598 return mSmartReplyController.isSendingSmartReply(entry.getKey()); in shouldKeepForSmartReplyHistory()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DSmartReplyViewTest.java118 @Mock private SmartReplyController mSmartReplyController; field in SmartReplyViewTest
173 mSmartReplyController, in setUp()
178 mSmartReplyController, in setUp()
209 mSmartReplyController, in testSendSmartReply_keyguardCancelled()
233 mSmartReplyController, in testSendSmartReply_waitsForKeyguard()
256 verify(mSmartReplyController).smartReplySent(mEntry, 2, TEST_CHOICES[2], in testSendSmartReply_controllerCalled()