Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleTest.java152 assertThat(mBubble.showInShade()).isTrue(); in testBubbleMetadataFlagListener_change_notified()
156 assertThat(mBubble.showInShade()).isFalse(); in testBubbleMetadataFlagListener_change_notified()
163 assertThat(mBubble.showInShade()).isTrue(); in testBubbleMetadataFlagListener_noChange_doesntNotify()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleController.java629 b.setShowDot(b.showInShade()); in onZenStateChanged()
1041 userBubbleData.add(bubble.getKey(), bubble.showInShade()); in saveBubbles()
1061 boolean showInShade = savedBubbleData.isShownInShade(e.getKey()); in restoreBubbles()
1062 updateBubble(e, true /* suppressFlyout */, showInShade); in restoreBubbles()
1255 && !mBubbleData.getAnyBubbleWithkey(key).showInShade()); in isBubbleNotificationSuppressedFromShade()
1609 public void updateBubble(BubbleEntry notif, boolean suppressFlyout, boolean showInShade) { in updateBubble() argument
1622 updateNotNotifyingEntry(b, notif, showInShade); in updateBubble()
1627 updateNotNotifyingEntry(b, notif, showInShade); in updateBubble()
1633 updateNotNotifyingEntry(b, notif, showInShade); in updateBubble()
1645 inflateAndAdd(bubble, suppressFlyout, showInShade); in updateBubble()
[all …]
DBubbleDebugConfig.java83 (bubble.showInShade() ? 1 : 0), in formatBubblesString()
DBubbleLogger.java155 bubble.showInShade() /* isUnread */, in logBubbleUiChanged()
DBubble.java745 boolean showInShade() { in showInShade() method in Bubble
783 boolean prevShowInShade = showInShade(); in setSuppressNotification()
790 if (showInShade() != prevShowInShade && mBubbleMetadataFlagListener != null) { in setSuppressNotification()
1014 pw.print(" showInShade: "); pw.println(showInShade()); in dump()
DBubbleData.java454 void notificationEntryUpdated(Bubble bubble, boolean suppressFlyout, boolean showInShade) { in notificationEntryUpdated() argument
460 bubble.getKey(), (prevBubble != null), suppressFlyout, showInShade, in notificationEntryUpdated()
486 boolean suppress = isBubbleExpandedAndSelected || !showInShade || !bubble.showInShade(); in notificationEntryUpdated()