Home
last modified time | relevance | path

Searched refs:representativeEntry (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DSensitiveContentCoordinatorTest.kt184 verify(entry.representativeEntry!!).setSensitive(false, false) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction()
205 verify(entry.representativeEntry!!).setSensitive(false, true) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction_sensitiveActive()
206 verify(entry.representativeEntry!!.row!!).setPublicExpanderVisible(true) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction_sensitiveActive()
232 verify(entry.representativeEntry!!).setSensitive(true, false) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction_shouldProtectNotification()
233 verify(entry.representativeEntry!!.row!!).setPublicExpanderVisible(false) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction_shouldProtectNotification()
252 verify(entry.representativeEntry!!).setSensitive(false, false) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction()
273 verify(entry.representativeEntry!!).setSensitive(false, true) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction_sensitiveActive()
274 verify(entry.representativeEntry!!.row!!).setPublicExpanderVisible(true) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction_sensitiveActive()
300 verify(entry.representativeEntry!!).setSensitive(true, false) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction_shouldProtectNotification()
301 verify(entry.representativeEntry!!.row!!).setPublicExpanderVisible(false) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction_shouldProtectNotification()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
DGroupMembershipManagerImpl.java83 NotificationEntry representativeEntry = entry.getRepresentativeEntry(); in getChildren() local
84 if (representativeEntry != null && isGroupSummary(representativeEntry)) { in getChildren()
86 GroupEntry parent = representativeEntry.getParent(); in getChildren()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/
DRenderNotificationListInteractor.kt95 entry.representativeEntry?.let { notifEntry -> in buildActiveNotificationsStore()
110 entry.representativeEntry?.let { representativeEntry -> in buildActiveNotificationsStore() method
111 result[representativeEntry.key] = representativeEntry.ranking.rank in buildActiveNotificationsStore()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DDismissibilityCoordinator.kt63 entry.representativeEntry?.let { notifEntry -> in <lambda>()
74 entry.representativeEntry?.let { markedKeys.add(it.key) } in <lambda>()
DRowAppearanceCoordinator.kt65 entryToExpand = list.firstOrNull()?.representativeEntry?.takeIf { entry -> in <lambda>()
DStackCoordinator.kt84 val entry = checkNotNull(it.representativeEntry) { "Null notif entry for ${it.key}" } in calculateNotifStats()
DSensitiveContentCoordinator.kt159 listEntry.representativeEntry?.let { yield(it) } in extractAllRepresentativeEntries()
DConversationCoordinator.kt140 entry.representativeEntry?.let { in <lambda>()
DHeadsUpCoordinator.kt698 mHeadsUpManager.compare(o1.representativeEntry, o2.representativeEntry) in <lambda>()
DKeyguardCoordinator.kt417 predicate(representativeEntry) -> true in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/domain/interactor/
DRenderNotificationsListInteractorTest.kt147 whenever(this.representativeEntry).thenReturn(this) in mockNotificationEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DKeyguardNotificationVisibilityProvider.kt206 entry.representativeEntry?.isAmbient == true -> true in shouldHideIfEntrySilent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DShadeListBuilder.java1344 NotificationEntry representativeEntry = entry.getRepresentativeEntry(); in setEntrySection() local
1345 if (representativeEntry != null) { in setEntrySection()
1346 representativeEntry.getAttachState().setSection(finalSection); in setEntrySection()
1348 representativeEntry.setBucket(finalSection.getBucket()); in setEntrySection()