Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/legacy/
DNotificationGroupManagerLegacy.java268 boolean didAdd = group.postBatchHistory.add(new PostRecord(entry)); in addToPostBatchHistory()
275 private void trimPostBatchHistory(@NonNull TreeSet<PostRecord> postBatchHistory) { in trimPostBatchHistory()
411 TreeSet<PostRecord> combinedHistory = new TreeSet<>(group.postBatchHistory); in getPriorityConversationAlertOverride()
428 for (PostRecord record : combinedHistory.descendingSet()) { in getPriorityConversationAlertOverride()
886 public static class PostRecord implements Comparable<PostRecord> { class in NotificationGroupManagerLegacy
891 public PostRecord(@NonNull NotificationEntry entry) { in PostRecord() method in NotificationGroupManagerLegacy.PostRecord
897 public int compareTo(PostRecord o) { in compareTo()
908 PostRecord that = (PostRecord) o; in equals()
924 public final TreeSet<PostRecord> postBatchHistory = new TreeSet<>();