Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DAssistantFeedbackControllerTest.java101 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_flagDisabled()
106 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_flagDisabled()
115 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_noChange()
125 assertEquals(STATUS_PROMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
129 assertEquals(STATUS_SILENCED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
133 assertEquals(STATUS_DEMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
142 assertEquals(STATUS_PROMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedRanking()
146 assertEquals(STATUS_DEMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedRanking()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DAssistantFeedbackController.java112 public int getFeedbackStatus(NotificationEntry entry) { in getFeedbackStatus() method in AssistantFeedbackController
144 int feedbackStatus = getFeedbackStatus(entry); in getFeedbackIcon()
155 int feedbackStatus = getFeedbackStatus(entry); in getInlineDescriptionResource()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DFeedbackInfoTest.java156 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_silenced()
168 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_promoted()
180 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_alerted()
192 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_demoted()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DFeedbackInfo.java146 int status = mFeedbackController.getFeedbackStatus(mEntry); in getPrompt()