Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DAssistantFeedbackControllerTest.java100 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_flagDisabled()
105 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_flagDisabled()
114 assertEquals(STATUS_UNCHANGED, mAssistantFeedbackController.getFeedbackStatus( in testFeedback_noChange()
124 assertEquals(STATUS_PROMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
128 assertEquals(STATUS_SILENCED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
132 assertEquals(STATUS_DEMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedImportance()
141 assertEquals(STATUS_PROMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedRanking()
145 assertEquals(STATUS_DEMOTED, mAssistantFeedbackController.getFeedbackStatus(entry)); in testFeedback_changedRanking()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A 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()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DFeedbackInfoTest.java139 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_silenced()
151 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_promoted()
163 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_alerted()
175 when(mAssistantFeedbackController.getFeedbackStatus(any(NotificationEntry.class))) in testPrompt_demoted()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DFeedbackInfo.java145 int status = mFeedbackController.getFeedbackStatus(mEntry); in getPrompt()