Home
last modified time | relevance | path

Searched refs:isGroupSummary (Results 1 – 25 of 27) sorted by relevance

12

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
H A DGroupMembershipManagerImpl.java35 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 DGroupMembershipManager.java34 boolean isGroupSummary(NotificationEntry entry); in isGroupSummary() method
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java144 boolean isGroupSummary = record.getNotification().isGroupSummary(); in sort()
152 isGroupSummary ? '0' : '1', in sort()
H A DNotificationRecordLogger.java396 && (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 DSnoozeHelper.java340 && potentialGroupSummary.getNotification().isGroupSummary() in repostGroupSummary()
H A DNotificationManagerService.java2126 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 DNotifUiAdjustmentProvider.kt107 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 DNotificationPanelLogger.java103 proto.isGroupSummary = n.getNotification().isGroupSummary(); in toNotificationProto()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationTestHelper.java459 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 DSbnBuilder.java146 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 DNotificationEntryBuilder.java234 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 DGroupCoalescer.java333 o2.getSbn().getNotification().isGroupSummary(),
334 o1.getSbn().getNotification().isGroupSummary());
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/
H A DHighPriorityProvider.java134 && !mGroupMembershipManager.isGroupSummary((NotificationEntry) entry)) { in hasHighPriorityChild()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
H A DPeopleNotificationIdentifier.kt115 if (!groupManager.isGroupSummary(entry)) {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/
H A DNotificationLoggerTest.java218 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 DNotifCollection.java417 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 DShadeListBuilder.java598 if (entry.getSbn().getNotification().isGroupSummary()) { in groupNotifs()
915 && !sbn.getNotification().isGroupSummary() in addGroupsWithChildrenLostToFiltering()
/aosp14/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java171 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 DHeadsUpCoordinator.kt147 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 DHighPriorityProviderTest.java218 when(mGroupMembershipManager.isGroupSummary(summary)).thenReturn(true); in testIsHighPriority_checkChildrenToCalculatePriority_legacy()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRow.java321 && mGroupMembershipManager.isGroupSummary(mEntry)) {
3317 if (mGroupMembershipManager.isGroupSummary(mEntry)) {
/aosp14/frameworks/base/core/java/android/app/
H A DNotification.java3786 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 DBubbleController.java1887 boolean isSummary = entry.getStatusBarNotification().getNotification().isGroupSummary(); in isSummaryOfBubbles()
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationManagerServiceTest.java4182 assertTrue(parent.getSbn().getNotification().isGroupSummary()); in testSnoozeRunnable_snoozeGroupChild_onlyChildOfSummary()
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...

12