D | ShadowNotificationManager.java | 32 private Map<Key, Notification> notifications = new HashMap<>(); field in ShadowNotificationManager 47 notifications.put(new Key(tag, id), notification); in notify() 58 if (notifications.containsKey(key)) { in cancel() 59 notifications.remove(key); in cancel() 65 notifications.clear(); in cancelAll() 80 new StatusBarNotification[notifications.size()]; in getActiveNotifications() 82 for (Map.Entry<Key, Notification> entry : notifications.entrySet()) { in getActiveNotifications() 325 return notifications.size(); in size() 329 return notifications.get(new Key(null, id)); in getNotification() 333 return notifications.get(new Key(tag, id)); in getNotification() [all …]
|