Home
last modified time | relevance | path

Searched refs:noLongerVisible (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationVisibilityLogger.java68 ArraySet<NotificationVisibility> noLongerVisible = new ArraySet<>(); in notifyVisibilityChanged() local
83 noLongerVisible.addAll(previouslyVisible); in notifyVisibilityChanged()
84 noLongerVisible.removeAll(mCurrentlyVisible); in notifyVisibilityChanged()
86 noLongerVisible.addAll(previouslyVisible); in notifyVisibilityChanged()
90 recycleAndClear(noLongerVisible); in notifyVisibilityChanged()
100 Set<NotificationVisibility> newlyVisible, Set<NotificationVisibility> noLongerVisible) { in onNotificationVisibilityChanged() argument
101 if (newlyVisible.isEmpty() && noLongerVisible.isEmpty()) { in onNotificationVisibilityChanged()
109 NotificationVisibility[] noLongerVisibleArray = createDeepClone(noLongerVisible) in onNotificationVisibilityChanged()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/notification/
DNotificationVisibilityLogger.java115 Set<NotificationVisibility> newlyVisible, Set<NotificationVisibility> noLongerVisible) { in onNotificationVisibilityChanged() argument
116 if (newlyVisible.isEmpty() && noLongerVisible.isEmpty()) { in onNotificationVisibilityChanged()
122 cloneVisibilitiesAsArr(newlyVisible), cloneVisibilitiesAsArr(noLongerVisible)); in onNotificationVisibilityChanged()