Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationGroupManager.java138 sbn.getNotification().isGroupSummary()); in onEntryRemovedInternal()
142 isGroup, boolean isGroupSummary) { in onEntryRemovedInternal() argument
152 if (isGroupChild(removed.getKey(), isGroup, isGroupSummary)) { in onEntryRemovedInternal()
243 && group.summary.getSbn().getNotification().isGroupSummary() in updateSuppression()
276 oldNotification.getNotification().isGroupSummary()); in onEntryUpdated()
310 return isGroupSuppressed(getGroupKey(sbn)) && sbn.getNotification().isGroupSummary(); in isSummaryOfSuppressedGroup()
314 return !sbn.getNotification().isGroupSummary() in isOnlyChild()
384 if (!isGroupSummary(sbn)) { in isSummaryOfGroup()
502 public boolean isGroupSummary(StatusBarNotification sbn) { in isGroupSummary() method in NotificationGroupManager
506 return sbn.getNotification().isGroupSummary(); in isGroupSummary()
[all …]
DNotificationGroupAlertTransferHelper.java455 if (mEntry.getSbn().getNotification().isGroupSummary() in isStillValid()
456 != mOriginalNotification.getNotification().isGroupSummary()) { in isStillValid()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java295 boolean isGroupSummary, in createRow() argument
298 Notification notif = createNotification(isGroupSummary, groupKey); in createRow()
318 private Notification createNotification(boolean isGroupSummary, @Nullable String groupKey) { in createNotification() argument
319 return createNotification(isGroupSummary, groupKey, null /* bubble metadata */); in createNotification()
330 public Notification createNotification(boolean isGroupSummary, in createNotification() argument
343 if (isGroupSummary) { in createNotification()
/frameworks/base/services/core/java/com/android/server/notification/
DRankingHelper.java139 boolean isGroupSummary = record.getNotification().isGroupSummary(); in sort()
147 isGroupSummary ? '0' : '1', in sort()
DGroupHelper.java69 if (sbn.getNotification().isGroupSummary()) return; in addToOngoingGroupCount()
91 || childSbn.getNotification().isGroupSummary()) return; in onNotificationUpdated()
DNotificationRecordLoggerImpl.java49 /* bool is_group_summary = 9 */ r.getSbn().getNotification().isGroupSummary(), in maybeLogNotificationPosted()
DNotificationRecordLogger.java347 && (r.getSbn().getNotification().isGroupSummary() in shouldLogReported()
348 == old.getSbn().getNotification().isGroupSummary()) in shouldLogReported()
DSnoozeHelper.java412 && potentialGroupSummary.getNotification().isGroupSummary() in repostGroupSummary()
DNotificationManagerService.java1760 if (posted.getSbn().isGroup() && posted.getNotification().isGroupSummary()) { in getNotificationRecordCount()
6129 if (r.getNotification().isGroupSummary()) {
6591 if (r.getSbn().isGroup() && r.getSbn().getNotification().isGroupSummary()) {
6743 if (n.isGroupSummary() && !sbn.isAppGroup()) {
6750 boolean isSummary = n.isGroupSummary();
6754 boolean oldIsSummary = old != null && oldN.isGroupSummary();
6909 if (record.getSbn().isGroup() && record.getSbn().getNotification().isGroupSummary()) {
8060 if (!n.isGroupSummary()) {
8088 if ((childSbn.isGroup() && !childSbn.getNotification().isGroupSummary()) &&
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationPanelLogger.java93 proto.isGroupSummary = n.getNotification().isGroupSummary(); in toNotificationProto()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DSbnBuilder.java146 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/
DNotificationEntryBuilder.java182 public NotificationEntryBuilder setGroupSummary(Context context, boolean isGroupSummary) { in setGroupSummary() argument
183 mSbnBuilder.setGroupSummary(context, isGroupSummary); in setGroupSummary()
DHighPriorityProviderTest.java181 when(mGroupManager.isGroupSummary(summary.getSbn())).thenReturn(true); in testIsHighPriority_checkChildrenToCalculatePriority()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/
DGroupCoalescer.java308 o2.getSbn().getNotification().isGroupSummary(),
309 o1.getSbn().getNotification().isGroupSummary());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/
DHighPriorityProvider.java90 && mGroupManager.isGroupSummary(entry.getRepresentativeEntry().getSbn())) { in hasHighPriorityChild()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/
DNotificationLoggerTest.java200 assertFalse(n.isGroupSummary); in testLogPanelShownOnWake()
217 assertFalse(n.isGroupSummary); in testLogPanelShownOnShadePull()
/frameworks/base/core/java/android/service/notification/
DStatusBarNotification.java146 if (overrideGroupKey != null && getNotification().isGroupSummary()) { in key()
466 getNotification().isGroupSummary() ? 1 : 0) in getLogMaker()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifCollection.java334 if (entry.getSbn().getNotification().isGroupSummary()) { in locallyDismissNotifications()
588 if (entry.getSbn().getNotification().isGroupSummary()) { in cancelLocalDismissal()
692 && !entry.getSbn().getNotification().isGroupSummary()
DNotificationRankingManager.kt178 val oldIsGroupSummary = entry.sbn.notification.isGroupSummary in <lambda>()
DShadeListBuilder.java435 if (entry.getSbn().getNotification().isGroupSummary()) { in groupNotifs()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java1467 boolean isSummary = entry.getSbn().getNotification().isGroupSummary(); in isSummaryOfBubbles()
/frameworks/base/core/java/android/app/
DNotification.java3331 public boolean isGroupSummary() { in isGroupSummary() method in Notification
3347 if (isGroupSummary() in suppressAlertingDueToGrouping()
4468 public Builder setGroupSummary(boolean isGroupSummary) { in setGroupSummary() argument
4469 setFlag(FLAG_GROUP_SUMMARY, isGroupSummary); in setGroupSummary()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationManagerServiceTest.java2683 assertTrue(parent.getSbn().getNotification().isGroupSummary()); in testSnoozeRunnable_snoozeGroupChild_onlyChildOfSummary()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/frameworks/base/config/
Dboot-image-profile.txt2712 HSPLandroid/app/Notification;->isGroupSummary()Z