Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationVisibilityLogger.java67 ArraySet<NotificationVisibility> newlyVisible = new ArraySet<>(); in notifyVisibilityChanged() local
80 newlyVisible.addAll(mCurrentlyVisible); in notifyVisibilityChanged()
81 newlyVisible.removeAll(previouslyVisible); in notifyVisibilityChanged()
89 onNotificationVisibilityChanged(newlyVisible, previouslyVisible); in notifyVisibilityChanged()
100 Set<NotificationVisibility> newlyVisible, Set<NotificationVisibility> noLongerVisible) { in onNotificationVisibilityChanged() argument
101 if (newlyVisible.isEmpty() && noLongerVisible.isEmpty()) { in onNotificationVisibilityChanged()
106 NotificationVisibility[] newlyVisibleArray = createDeepClone(newlyVisible) 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()