/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRowTest.java | 215 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 D | NotificationContentViewTest.java | 97 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 D | NotificationChildrenContainer.java | 1299 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 D | NotificationViewWrapper.java | 107 public void showFeedbackIcon(boolean show, Pair<Integer, Integer> resIds) { in showFeedbackIcon() method in NotificationViewWrapper
|
H A D | NotificationHeaderViewWrapper.java | 131 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 D | NotificationContentView.java | 1609 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 D | ExpandableNotificationRow.java | 1658 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 D | NotificationViewHierarchyManager.java | 514 row.showFeedbackIcon(mAssistantFeedbackController.showFeedbackIndicator(entry), in updateRowStatesInternal()
|