Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
DNotifCollectionInconsistencyTracker.kt71 currentEntriesWithoutRankings: ArrayMap<String, NotificationEntry>?, in <lambda>()
76 currentEntriesWithoutRankings ?: emptyMap(), in <lambda>()
79 notificationsWithoutRankings = currentEntriesWithoutRankings?.keys ?: emptySet() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
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()