Home
last modified time | relevance | path

Searched refs:isSendingSmartReply (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DSmartReplyControllerTest.java129 assertTrue(controller.isSendingSmartReply(TEST_NOTIFICATION_KEY)); in testSendSmartReply_reportsSending()
135 controller.isSendingSmartReply(TEST_NOTIFICATION_KEY); in testSendingSmartReply_afterRemove_shouldReturnFalse()
138 assertFalse(controller.isSendingSmartReply(TEST_NOTIFICATION_KEY)); in testSendingSmartReply_afterRemove_shouldReturnFalse()
DNotificationEntryManagerTest.java284 when(mSmartReplyController.isSendingSmartReply(mEntry.key)).thenReturn(true); in testRemoveNotification_blockedBySendingSmartReply()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DSmartReplyController.java60 public boolean isSendingSmartReply(String key) { in isSendingSmartReply() method in SmartReplyController
DNotificationEntryManager.java619 return entry != null && mSmartReplyController.isSendingSmartReply(entry.key); in shouldKeepForSmartReply()