Home
last modified time | relevance | path

Searched refs:showFeedbackIcon (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowTest.java215 mGroupRow.showFeedbackIcon(false, null); in testFeedback_noHeader()
231 mGroupRow.showFeedbackIcon(show, resIds); in testFeedback_header()
233 verify(mockContainer, times(1)).showFeedbackIcon(show, resIds); in testFeedback_header()
234 verify(privateLayout, times(1)).showFeedbackIcon(show, resIds); in testFeedback_header()
235 verify(publicLayout, times(1)).showFeedbackIcon(show, resIds); in testFeedback_header()
H A DNotificationContentViewTest.java97 mView.showFeedbackIcon(true, new Pair(R.drawable.ic_feedback_alerted, in testShowFeedbackIcon()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationChildrenContainer.java1299 public void showFeedbackIcon(boolean show, Pair<Integer, Integer> resIds) {
1301 mNotificationHeaderWrapper.showFeedbackIcon(show, resIds);
1304 mNotificationHeaderWrapperLowPriority.showFeedbackIcon(show, resIds);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationViewWrapper.java107 public void showFeedbackIcon(boolean show, Pair<Integer, Integer> resIds) { in showFeedbackIcon() method in NotificationViewWrapper
H A DNotificationHeaderViewWrapper.java131 public void showFeedbackIcon(boolean show, Pair<Integer, Integer> resIds) { in showFeedbackIcon() method in NotificationHeaderViewWrapper
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentView.java1609 public void showFeedbackIcon(boolean show, Pair<Integer, Integer> resIds) { in showFeedbackIcon() method in NotificationContentView
1611 mContractedWrapper.showFeedbackIcon(show, resIds); in showFeedbackIcon()
1614 mExpandedWrapper.showFeedbackIcon(show, resIds); in showFeedbackIcon()
1617 mHeadsUpWrapper.showFeedbackIcon(show, resIds); in showFeedbackIcon()
H A DExpandableNotificationRow.java1658 public void showFeedbackIcon(boolean show, Pair<Integer, Integer> resIds) {
1660 mChildrenContainer.showFeedbackIcon(show, resIds);
1662 mPrivateLayout.showFeedbackIcon(show, resIds);
1663 mPublicLayout.showFeedbackIcon(show, resIds);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationViewHierarchyManager.java514 row.showFeedbackIcon(mAssistantFeedbackController.showFeedbackIndicator(entry), in updateRowStatesInternal()