Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A 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()
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()
170 mSmartReplyController.stopSending(mEntry); in testSendingSmartReply_afterRemove_shouldReturnFalse()
[all …]
H A DNotificationRemoteInputManagerTest.java64 @Mock private SmartReplyController mSmartReplyController; field in NotificationRemoteInputManagerTest
82 mSmartReplyController, in setUp()
129 when(mSmartReplyController.isSendingSmartReply(mEntry.getKey())).thenReturn(true); in testShouldExtendLifetime_smartReplySending()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRemoteInputCoordinator.kt69 private val mSmartReplyController: SmartReplyController
105 mSmartReplyController.stopSending(entry)
113 mSmartReplyController.stopSending(entry)
177 mSmartReplyController.setCallback(this::onSmartReplySent)
205 mSmartReplyController.stopSending(entry)
213 mSmartReplyController.stopSending(entry)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowController.java111 private final SmartReplyController mSmartReplyController; field in ExpandableNotificationRowController
264 mSmartReplyController = smartReplyController; in ExpandableNotificationRowController()
298 mSmartReplyController, in init()
H A DNotificationContentView.java113 private SmartReplyController mSmartReplyController; field in NotificationContentView
211 mSmartReplyController = smartReplyController; in initialize()
1521 mSmartReplyController.smartSuggestionsAdded(mNotificationEntry, numSmartReplies,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationRemoteInputManager.java92 private final SmartReplyController mSmartReplyController; field in NotificationRemoteInputManager
267 mSmartReplyController = smartReplyController; in NotificationRemoteInputManager()
589 return mSmartReplyController.isSendingSmartReply(entry.getKey()); in shouldKeepForSmartReplyHistory()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A 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()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java310 @Inject Lazy<SmartReplyController> mSmartReplyController; field in Dependency
510 mProviders.put(SmartReplyController.class, mSmartReplyController::get); in start()