Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DNotifCollectionInconsistencyTracker.kt69 currentEntriesWithoutRankings: ArrayMap<String, NotificationEntry>?,
74 currentEntriesWithoutRankings ?: emptyMap(),
77 notificationsWithoutRankings = currentEntriesWithoutRankings?.keys ?: emptySet()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollection.java623 ArrayMap<String, NotificationEntry> currentEntriesWithoutRankings = null; in applyRanking() local
643 if (currentEntriesWithoutRankings == null) { in applyRanking()
644 currentEntriesWithoutRankings = new ArrayMap<>(); in applyRanking()
646 currentEntriesWithoutRankings.put(entry.getKey(), entry); in applyRanking()
652 mInconsistencyTracker.logNewInconsistentRankings(currentEntriesWithoutRankings, rankingMap); in applyRanking()
653 if (currentEntriesWithoutRankings != null) { in applyRanking()
654 for (NotificationEntry entry : currentEntriesWithoutRankings.values()) { in applyRanking()