/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | GroupMembershipManagerImpl.java | 35 public boolean isGroupSummary(NotificationEntry entry) { in isGroupSummary() method in GroupMembershipManagerImpl 59 return !isGroupSummary(entry) && entry.getParent().getChildren().size() == 1; in isOnlyChildInGroup() 69 if (isGroupSummary(entry.getRepresentativeEntry())) { in getChildren()
|
H A D | GroupMembershipManager.java | 34 boolean isGroupSummary(NotificationEntry entry); in isGroupSummary() method
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | RankingHelper.java | 144 boolean isGroupSummary = record.getNotification().isGroupSummary(); in sort() 152 isGroupSummary ? '0' : '1', in sort()
|
H A D | NotificationRecordLogger.java | 396 && (r.getSbn().getNotification().isGroupSummary() in shouldLogReported() 397 == old.getSbn().getNotification().isGroupSummary()) in shouldLogReported() 515 this.is_group_summary = p.r.getSbn().getNotification().isGroupSummary(); in NotificationReported()
|
H A D | SnoozeHelper.java | 340 && potentialGroupSummary.getNotification().isGroupSummary() in repostGroupSummary()
|
H A D | NotificationManagerService.java | 2126 if (posted.getSbn().isGroup() && posted.getNotification().isGroupSummary()) { in getNotificationRecordCount() 7536 if (r.getNotification().isGroupSummary()) { 7603 return !(record.getNotification().isGroupSummary() && GroupHelper.AUTOGROUP_KEY.equals( 8097 if (r.getSbn().isGroup() && r.getSbn().getNotification().isGroupSummary()) { 8249 if (n.isGroupSummary() && !sbn.isAppGroup()) { 8256 boolean isSummary = n.isGroupSummary(); 8260 boolean oldIsSummary = old != null && oldN.isGroupSummary(); 8441 if (record.getSbn().isGroup() && record.getSbn().getNotification().isGroupSummary()) { 9806 if (!n.isGroupSummary()) { 9834 if ((childSbn.isGroup() && !childSbn.getNotification().isGroupSummary()) &&
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/ |
H A D | NotifUiAdjustmentProvider.kt | 107 val isGroupSummary = parent.summary == entry regex 108 return isMinimizedSection && (isTopLevelEntry || isGroupSummary)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationPanelLogger.java | 103 proto.isGroupSummary = n.getNotification().isGroupSummary(); in toNotificationProto()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationTestHelper.java | 459 boolean isGroupSummary, in createRow() argument 462 Notification notif = createNotification(isGroupSummary, groupKey); in createRow() 482 private Notification createNotification(boolean isGroupSummary, @Nullable String groupKey) { in createNotification() argument 483 return createNotification(isGroupSummary, groupKey, null /* bubble metadata */); in createNotification() 494 public Notification createNotification(boolean isGroupSummary, in createNotification() argument 507 if (isGroupSummary) { in createNotification()
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/ |
H A D | SbnBuilder.java | 146 public SbnBuilder setGroupSummary(Context context, boolean isGroupSummary) { in setGroupSummary() argument 147 modifyNotification(context).setGroupSummary(isGroupSummary); in setGroupSummary()
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotificationEntryBuilder.java | 234 public NotificationEntryBuilder setGroupSummary(Context context, boolean isGroupSummary) { in setGroupSummary() argument 235 mSbnBuilder.setGroupSummary(context, isGroupSummary); in setGroupSummary()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/ |
H A D | GroupCoalescer.java | 333 o2.getSbn().getNotification().isGroupSummary(), 334 o1.getSbn().getNotification().isGroupSummary());
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/ |
H A D | HighPriorityProvider.java | 134 && !mGroupMembershipManager.isGroupSummary((NotificationEntry) entry)) { in hasHighPriorityChild()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/ |
H A D | PeopleNotificationIdentifier.kt | 115 if (!groupManager.isGroupSummary(entry)) {
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationLoggerTest.java | 218 assertFalse(n.isGroupSummary); in testLogPanelShownOnWake() 235 assertFalse(n.isGroupSummary); in testLogPanelShownOnShadePull()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotifCollection.java | 417 if (entry.getSbn().getNotification().isGroupSummary()) { in locallyDismissNotifications() 597 .filter(it -> it.getSbn().getNotification().isGroupSummary()) in getGroupSummary() 618 .filter(it -> !it.getSbn().getNotification().isGroupSummary()) in isOnlyChildInGroup() 777 if (entry.getSbn().getNotification().isGroupSummary()) { in cancelLocalDismissal() 876 && !entry.getSbn().getNotification().isGroupSummary()
|
H A D | ShadeListBuilder.java | 598 if (entry.getSbn().getNotification().isGroupSummary()) { in groupNotifs() 915 && !sbn.getNotification().isGroupSummary() in addGroupsWithChildrenLostToFiltering()
|
/aosp14/frameworks/base/core/java/android/service/notification/ |
H A D | StatusBarNotification.java | 171 if (overrideGroupKey != null && getNotification().isGroupSummary()) { in key() 501 getNotification().isGroupSummary() ? 1 : 0) in getLogMaker()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | HeadsUpCoordinator.kt | 147 val logicalSummary = logicalMembers.find { it.sbn.notification.isGroupSummary } 295 .filter { posted -> !posted.entry.sbn.notification.isGroupSummary } 313 .filter { !it.sbn.notification.isGroupSummary }
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
H A D | HighPriorityProviderTest.java | 218 when(mGroupMembershipManager.isGroupSummary(summary)).thenReturn(true); in testIsHighPriority_checkChildrenToCalculatePriority_legacy()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRow.java | 321 && mGroupMembershipManager.isGroupSummary(mEntry)) { 3317 if (mGroupMembershipManager.isGroupSummary(mEntry)) {
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | Notification.java | 3786 public boolean isGroupSummary() { in isGroupSummary() method in Notification 3802 if (isGroupSummary() in suppressAlertingDueToGrouping() 4944 public Builder setGroupSummary(boolean isGroupSummary) { in setGroupSummary() argument 4945 setFlag(FLAG_GROUP_SUMMARY, isGroupSummary); in setGroupSummary()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | BubbleController.java | 1887 boolean isSummary = entry.getStatusBarNotification().getNotification().isGroupSummary(); in isSummaryOfBubbles()
|
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationManagerServiceTest.java | 4182 assertTrue(parent.getSbn().getNotification().isGroupSummary()); in testSnoozeRunnable_snoozeGroupChild_onlyChildOfSummary()
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |