HomeSort by relevance Sort by last modified time
    Searched refs:mPendingNotifications (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationGroupManager.java 53 private HashMap<String, NotificationData.Entry> mPendingNotifications;
232 if (mPendingNotifications == null) {
237 Collection<NotificationData.Entry> values = mPendingNotifications.values();
572 if (mPendingNotifications == null) {
575 Collection<NotificationData.Entry> values = mPendingNotifications.values();
624 mPendingNotifications = pendingNotifications;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationEntryManager.java 90 protected final HashMap<String, NotificationData.Entry> mPendingNotifications = new HashMap<>();
222 pw.print(" mPendingNotifications=");
223 if (mPendingNotifications.size() == 0) {
226 for (NotificationData.Entry entry : mPendingNotifications.values()) {
243 mGroupManager.setPendingEntries(mPendingNotifications);
433 if (mPendingNotifications.containsKey(key)) {
434 NotificationData.Entry entry = mPendingNotifications.get(key);
436 mPendingNotifications.remove(key);
462 mPendingNotifications.remove(entry.key);
    [all...]

Completed in 106 milliseconds