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.java100 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_flagDisabled()
110 assertEquals(STATUS_PROMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
114 assertEquals(STATUS_SILENCED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
118 assertEquals(STATUS_DEMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
127 assertEquals(STATUS_PROMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedRanking()
131 assertEquals(STATUS_DEMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedRanking()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DAssistantFeedbackController.java98 public int getFeedbackStatus(NotificationEntry entry) { in getFeedbackStatus() method in AssistantFeedbackController
130 return getFeedbackStatus(entry) != STATUS_UNCHANGED; in showFeedbackIndicator()
140 int feedbackStatus = getFeedbackStatus(entry); in getFeedbackResources()
166 int feedbackStatus = getFeedbackStatus(entry); in getInlineDescriptionResource()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DFeedbackInfoTest.java143 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_silenced()
155 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_promoted()
167 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_alerted()
179 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_demoted()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DFeedbackInfo.java147 int status = mFeedbackController.getFeedbackStatus(mEntry); in getPrompt()