Home
last modified time | relevance | path

Searched refs:getFeedbackIcon (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DAssistantFeedbackControllerTest.java102 assertNull(mAssistantFeedbackController.getFeedbackIcon( in testFeedback_flagDisabled()
107 assertNull(mAssistantFeedbackController.getFeedbackIcon( in testFeedback_flagDisabled()
116 assertNull(mAssistantFeedbackController.getFeedbackIcon( in testFeedback_noChange()
125 assertNotNull(mAssistantFeedbackController.getFeedbackIcon(entry)); in testFeedback_changedImportance()
129 assertNotNull(mAssistantFeedbackController.getFeedbackIcon(entry)); in testFeedback_changedImportance()
133 assertNotNull(mAssistantFeedbackController.getFeedbackIcon(entry)); in testFeedback_changedImportance()
142 assertNotNull(mAssistantFeedbackController.getFeedbackIcon(entry)); in testFeedback_changedRanking()
146 assertNotNull(mAssistantFeedbackController.getFeedbackIcon(entry)); in testFeedback_changedRanking()
154 assertEquals(expected, mAssistantFeedbackController.getFeedbackIcon( in testGetFeedbackIcon_whenPromoted()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRowAppearanceCoordinator.kt67 controller.setFeedbackIcon(mAssistantFeedbackController.getFeedbackIcon(entry))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DAssistantFeedbackController.java143 public FeedbackIcon getFeedbackIcon(NotificationEntry entry) { in getFeedbackIcon() method in AssistantFeedbackController
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRowAppearanceCoordinatorTest.kt78 whenever(assistantFeedbackController.getFeedbackIcon(any())).thenReturn(FeedbackIcon(1, 2))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationGutsManager.java325 if (mAssistantFeedbackController.getFeedbackIcon(row.getEntry()) == null) { in initializeFeedbackInfo()