Searched refs:mSuppressedBubbles (Results 1 – 1 of 1) sorted by relevance
205 private final ArrayMap<LocusId, Bubble> mSuppressedBubbles = new ArrayMap<>(); field in BubbleData319 return mSuppressedBubbles.values().stream().anyMatch(b -> b.getKey().equals(key)); in hasSuppressedBubbleWithKey()326 return mSuppressedBubbles.get(locusId) != null; in isSuppressedWithLocusId()492 boolean isSuppressed = mSuppressedBubbles.containsKey(locusId); in notificationEntryUpdated()494 mSuppressedBubbles.remove(locusId); in notificationEntryUpdated()498 mSuppressedBubbles.put(locusId, bubble); in notificationEntryUpdated()702 mSuppressedBubbles.remove(b.getLocusId()); in doRemove()816 if (mBubbles.isEmpty() && mSuppressedBubbles.isEmpty()) { in dismissAll()824 while (!mSuppressedBubbles.isEmpty()) { in dismissAll()825 Bubble bubble = mSuppressedBubbles.removeAt(0); in dismissAll()[all …]