Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationVisibilityLogger.java38 private final ArraySet<NotificationVisibility> mCurrentlyVisible = new ArraySet<>(); field in CarNotificationVisibilityLogger
65 ArraySet<NotificationVisibility> previouslyVisible = new ArraySet<>(mCurrentlyVisible); in notifyVisibilityChanged()
70 mCurrentlyVisible.clear(); in notifyVisibilityChanged()
76 mCurrentlyVisible.addAll( in notifyVisibilityChanged()
80 newlyVisible.addAll(mCurrentlyVisible); in notifyVisibilityChanged()
84 noLongerVisible.removeAll(mCurrentlyVisible); in notifyVisibilityChanged()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/notification/
DNotificationVisibilityLogger.java45 private final ArraySet<NotificationVisibility> mCurrentlyVisible = new ArraySet<>(); field in NotificationVisibilityLogger
72 if (!mCurrentlyVisible.contains(visObj)) {
77 mPreviouslyVisible.addAll(mCurrentlyVisible);
81 recycleAllVisibilityObjects(mCurrentlyVisible);
82 mCurrentlyVisible.addAll(mTmpCurrentlyVisible);
108 recycleAllVisibilityObjects(mCurrentlyVisible); in stop()