Home
last modified time | relevance | path

Searched refs:groupEntry (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DGroupWhenCoordinatorTest.kt85 val groupEntry = in setNotificationGroupWhen_setClosestTimeByNow_whenAllNotificationsAreBeforeNow() constant
91 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in setNotificationGroupWhen_setClosestTimeByNow_whenAllNotificationsAreBeforeNow()
92 afterRenderGroupListener.onAfterRenderGroup(groupEntry, groupController) in setNotificationGroupWhen_setClosestTimeByNow_whenAllNotificationsAreBeforeNow()
105 val groupEntry = in setNotificationGroupWhen_setClosestTimeByNow_whenAllNotificationsAreAfterNow() constant
112 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in setNotificationGroupWhen_setClosestTimeByNow_whenAllNotificationsAreAfterNow()
113 afterRenderGroupListener.onAfterRenderGroup(groupEntry, groupController) in setNotificationGroupWhen_setClosestTimeByNow_whenAllNotificationsAreAfterNow()
128 val groupEntry = in setNotificationGroupWhen_setClosestFutureTimeByNow_whenThereAreBothBeforeAndAfterNow() constant
135 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in setNotificationGroupWhen_setClosestFutureTimeByNow_whenThereAreBothBeforeAndAfterNow()
136 afterRenderGroupListener.onAfterRenderGroup(groupEntry, groupController) in setNotificationGroupWhen_setClosestFutureTimeByNow_whenThereAreBothBeforeAndAfterNow()
150 val groupEntry = in setNotificationGroupWhen_filterInvalidNotificationTimes() constant
[all …]
DGroupCountCoordinatorTest.kt71 val groupEntry = GroupEntryBuilder() in testSetUntruncatedChildCount() constant
75 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in testSetUntruncatedChildCount()
76 afterRenderGroupListener.onAfterRenderGroup(groupEntry, groupController) in testSetUntruncatedChildCount()
DHeadsUpCoordinatorTest.kt691 val groupEntry = GroupEntryBuilder() in <lambda>() constant
695 beforeTransformGroupsListener.onBeforeTransformGroups(listOf(groupEntry)) in <lambda>()
697 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in <lambda>()
717 val groupEntry = GroupEntryBuilder() in <lambda>() constant
721 beforeTransformGroupsListener.onBeforeTransformGroups(listOf(groupEntry)) in <lambda>()
723 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in <lambda>()
745 val groupEntry = GroupEntryBuilder() in <lambda>() constant
749 beforeTransformGroupsListener.onBeforeTransformGroups(listOf(groupEntry)) in <lambda>()
751 beforeFinalizeFilterListener.onBeforeFinalizeFilter(listOf(groupEntry)) in <lambda>()
DPreparationCoordinatorTest.java378 GroupEntry groupEntry = new GroupEntryBuilder() in testCutoffGroupChildrenNotInflated() local
394 mBeforeFilterListener.onBeforeFinalizeFilter(List.of(groupEntry)); in testCutoffGroupChildrenNotInflated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DGroupWhenCoordinator.kt61 entries.asSequence().filterIsInstance<GroupEntry>().forEach { groupEntry -> in <lambda>() method
62 val whenMillis = calculateGroupNotificationTime(groupEntry, now) in <lambda>()
63 notificationGroupTimes[groupEntry] = whenMillis in <lambda>()
85 groupEntry: GroupEntry, in <lambda>()
90 groupEntry.children in <lambda>()
103 return checkNotNull(groupEntry.summary).creationTime in <lambda>()
DGroupCountCoordinator.kt40 entries.asSequence().filterIsInstance<GroupEntry>().forEach { groupEntry -> in <lambda>() method
41 untruncatedChildCounts[groupEntry] = groupEntry.children.size in <lambda>()
DRowAlertTimeCoordinator.kt44 entries.asSequence().filterIsInstance<GroupEntry>().forEach { groupEntry -> in <lambda>() method
45 val summary = checkNotNull(groupEntry.summary) in <lambda>()
46 latestAlertTimeBySummary[summary] = groupEntry.calculateLatestAlertTime() in <lambda>()
DPreparationCoordinator.java267 GroupEntry groupEntry = (GroupEntry) entry; in inflateAllRequiredViews() local
268 inflateRequiredGroupViews(groupEntry); in inflateAllRequiredViews()
276 private void inflateRequiredGroupViews(GroupEntry groupEntry) { in inflateRequiredGroupViews() argument
277 NotificationEntry summary = groupEntry.getSummary(); in inflateRequiredGroupViews()
281 List<NotificationEntry> children = groupEntry.getChildren(); in inflateRequiredGroupViews()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/notification/collection/
DGroupEntryBuilder.java100 public static List<NotificationEntry> getRawChildren(GroupEntry groupEntry) { in getRawChildren() argument
101 return groupEntry.getRawChildren(); in getRawChildren()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DConversationCoordinatorTest.kt153 val groupEntry = in testPromotedImportantConversationsMakesSummaryUnimportant() constant
163 GroupEntryBuilder.getRawChildren(groupEntry).remove(importantChild) in testPromotedImportantConversationsMakesSummaryUnimportant()
164 beforeRenderListListener.onBeforeRenderList(listOf(importantChild, groupEntry)) in testPromotedImportantConversationsMakesSummaryUnimportant()
223 val groupEntry = in testInAlertingPeopleSectionWhenThereIsAnImportantChild() constant
230 assertThat(peopleAlertingSectioner.isInSection(groupEntry)).isTrue() in testInAlertingPeopleSectionWhenThereIsAnImportantChild()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/
DHighPriorityProvider.java125 final GroupEntry groupEntry = (GroupEntry) entry; in isNotificationEntryWithAtLeastOneImportantChild() local
126 return groupEntry.getChildren().stream().anyMatch( in isNotificationEntryWithAtLeastOneImportantChild()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DOnAfterRenderGroupListener.java34 @NonNull GroupEntry groupEntry, in onAfterRenderGroup()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DHighPriorityProviderTest.java143 final GroupEntry groupEntry = new GroupEntryBuilder() in highImportanceConversationWhenAnyOfChildIsHighPriority() local
150 assertTrue(mHighPriorityProvider.isHighPriorityConversation(groupEntry)); in highImportanceConversationWhenAnyOfChildIsHighPriority()
DNotifCollectionTest.java841 NotificationEntry groupEntry = mCollectionListener.getEntry(groupNotif.key); in testGroupChildrenAreDismissedLocallyWhenSummaryIsDismissed() local
847 mCollection.dismissNotification(groupEntry, defaultStats(groupEntry)); in testGroupChildrenAreDismissedLocallyWhenSummaryIsDismissed()
850 assertEquals(DISMISSED, groupEntry.getDismissState()); in testGroupChildrenAreDismissedLocallyWhenSummaryIsDismissed()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DShadeListBuilder.java547 final GroupEntry groupEntry = (GroupEntry) entry; in filterNotifs() local
550 final NotificationEntry summary = groupEntry.getRepresentativeEntry(); in filterNotifs()
552 groupEntry.setSummary(null); in filterNotifs()
557 final List<NotificationEntry> children = groupEntry.getRawChildren(); in filterNotifs()
566 out.add(groupEntry); in filterNotifs()
643 GroupEntry groupEntry = (GroupEntry) tle; in stabilizeGroupingNotifs() local
644 List<NotificationEntry> children = groupEntry.getRawChildren(); in stabilizeGroupingNotifs()
645 for (int j = 0; j < groupEntry.getChildren().size(); j++) { in stabilizeGroupingNotifs()
/frameworks/base/tools/aapt/
DAaptAssets.h148 AaptFile(const String8& sourceFile, const AaptGroupEntry& groupEntry, in AaptFile() argument
150 : mGroupEntry(groupEntry) in AaptFile()