/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
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()
|
D | GroupMembershipManager.java | 34 boolean isGroupSummary(NotificationEntry entry); in isGroupSummary() method
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/legacy/ |
D | NotificationGroupManagerLegacy.java | 170 sbn.getNotification().isGroupSummary()); in onEntryRemovedInternal() 174 isGroup, boolean isGroupSummary) { in onEntryRemovedInternal() argument 187 if (isGroupChild(removed.getKey(), isGroup, isGroupSummary)) { in onEntryRemovedInternal() 312 && group.summary.getSbn().getNotification().isGroupSummary() in updateSuppression() 498 oldNotification.getNotification().isGroupSummary()); in onEntryUpdated() 535 return sbn.getNotification().isGroupSummary() && isGroupSuppressed(getGroupKey(sbn)); in isSummaryOfSuppressedGroup() 542 if (sbn.getNotification().isGroupSummary()) { in getGroupForSummary() 549 return !sbn.getNotification().isGroupSummary() in isOnlyChild() 617 public boolean isGroupSummary(NotificationEntry entry) { in isGroupSummary() method in NotificationGroupManagerLegacy 619 if (!isGroupSummary(sbn)) { in isGroupSummary() [all …]
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | RankingHelper.java | 141 boolean isGroupSummary = record.getNotification().isGroupSummary(); in sort() 149 isGroupSummary ? '0' : '1', in sort()
|
D | GroupHelper.java | 69 if (sbn.getNotification().isGroupSummary()) return; in addToOngoingGroupCount() 91 || childSbn.getNotification().isGroupSummary()) return; in onNotificationUpdated()
|
D | NotificationRecordLoggerImpl.java | 49 /* bool is_group_summary = 9 */ r.getSbn().getNotification().isGroupSummary(), in maybeLogNotificationPosted()
|
D | NotificationRecordLogger.java | 347 && (r.getSbn().getNotification().isGroupSummary() in shouldLogReported() 348 == old.getSbn().getNotification().isGroupSummary()) in shouldLogReported()
|
D | SnoozeHelper.java | 415 && potentialGroupSummary.getNotification().isGroupSummary() in repostGroupSummary()
|
D | NotificationManagerService.java | 2066 if (posted.getSbn().isGroup() && posted.getNotification().isGroupSummary()) { in getNotificationRecordCount() 6748 if (r.getNotification().isGroupSummary()) { 7186 if (r.getSbn().isGroup() && r.getSbn().getNotification().isGroupSummary()) { 7338 if (n.isGroupSummary() && !sbn.isAppGroup()) { 7345 boolean isSummary = n.isGroupSummary(); 7349 boolean oldIsSummary = old != null && oldN.isGroupSummary(); 7505 if (record.getSbn().isGroup() && record.getSbn().getNotification().isGroupSummary()) { 8826 if (!n.isGroupSummary()) { 8854 if ((childSbn.isGroup() && !childSbn.getNotification().isGroupSummary()) &&
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationTestHelper.java | 340 boolean isGroupSummary, in createRow() argument 343 Notification notif = createNotification(isGroupSummary, groupKey); in createRow() 363 private Notification createNotification(boolean isGroupSummary, @Nullable String groupKey) { in createNotification() argument 364 return createNotification(isGroupSummary, groupKey, null /* bubble metadata */); in createNotification() 375 public Notification createNotification(boolean isGroupSummary, in createNotification() argument 388 if (isGroupSummary) { in createNotification()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationPanelLogger.java | 93 proto.isGroupSummary = n.getNotification().isGroupSummary(); in toNotificationProto()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | SbnBuilder.java | 146 public SbnBuilder setGroupSummary(Context context, boolean isGroupSummary) { in setGroupSummary() argument 147 modifyNotification(context).setGroupSummary(isGroupSummary); in setGroupSummary()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationEntryBuilder.java | 211 public NotificationEntryBuilder setGroupSummary(Context context, boolean isGroupSummary) { in setGroupSummary() argument 212 mSbnBuilder.setGroupSummary(context, isGroupSummary); in setGroupSummary()
|
D | HighPriorityProviderTest.java | 163 when(mGroupMembershipManager.isGroupSummary(summary)).thenReturn(true); in testIsHighPriority_checkChildrenToCalculatePriority_legacy()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | NotificationGroupManagerLegacyTest.java | 115 assertTrue(mGroupManager.isGroupSummary(summaryEntry)); in testIsSummaryOfGroupWithChildren() 143 assertFalse(mGroupManager.isGroupSummary(summaryEntry)); in testRemoveSummaryFromGroupWithSummary()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/ |
D | HighPriorityProvider.java | 84 && !mGroupMembershipManager.isGroupSummary((NotificationEntry) entry)) { in hasHighPriorityChild()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/ |
D | GroupCoalescer.java | 319 o2.getSbn().getNotification().isGroupSummary(), 320 o1.getSbn().getNotification().isGroupSummary());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationGroupAlertTransferHelper.java | 212 if (isHeadsUp && entry.getSbn().getNotification().isGroupSummary()) { in onHeadsUpStateChanged() 663 if (mEntry.getSbn().getNotification().isGroupSummary() in isStillValid() 664 != mOriginalNotification.getNotification().isGroupSummary()) { in isStillValid()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLoggerTest.java | 200 assertFalse(n.isGroupSummary); in testLogPanelShownOnWake() 217 assertFalse(n.isGroupSummary); in testLogPanelShownOnShadePull()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/ |
D | PeopleNotificationIdentifier.kt | 115 if (!groupManager.isGroupSummary(entry)) { in extractPersonTypeInfo()
|
/frameworks/base/core/java/android/service/notification/ |
D | StatusBarNotification.java | 144 if (overrideGroupKey != null && getNotification().isGroupSummary()) { in key() 464 getNotification().isGroupSummary() ? 1 : 0) in getLogMaker()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotifCollection.java | 339 if (entry.getSbn().getNotification().isGroupSummary()) { in locallyDismissNotifications() 592 if (entry.getSbn().getNotification().isGroupSummary()) { in cancelLocalDismissal() 700 && !entry.getSbn().getNotification().isGroupSummary()
|
D | NotificationRankingManager.kt | 193 val oldIsGroupSummary = entry.sbn.notification.isGroupSummary in <lambda>()
|
D | ShadeListBuilder.java | 478 if (entry.getSbn().getNotification().isGroupSummary()) { in groupNotifs()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRow.java | 286 && mGroupMembershipManager.isGroupSummary(mEntry)) { 2925 if (mGroupMembershipManager.isGroupSummary(mEntry)) {
|