Searched refs:showInShade (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/ |
D | BubbleTest.java | 145 assertThat(mBubble.showInShade()).isTrue(); in testSuppressionListener_change_notified() 149 assertThat(mBubble.showInShade()).isFalse(); in testSuppressionListener_change_notified() 156 assertThat(mBubble.showInShade()).isTrue(); in testSuppressionListener_noChange_doesntNotify()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | Bubble.java | 490 boolean showInShade() { in showInShade() method in Bubble 505 boolean prevShowInShade = showInShade(); in setSuppressNotification() 512 if (showInShade() != prevShowInShade && mSuppressionListener != null) { in setSuppressNotification() 694 pw.print(" showInShade: "); pw.println(showInShade()); in dump() 726 showInShade(), in logUIEvent()
|
D | BubbleDebugConfig.java | 75 (bubble.showInShade() ? 1 : 0), in formatBubblesString()
|
D | BubbleController.java | 373 b.setShowDot(b.showInShade()); in BubbleController() 380 b.setShowDot(b.showInShade()); in BubbleController() 397 !bubble.showInShade()); in BubbleController() 991 && !mBubbleData.getAnyBubbleWithkey(key).showInShade()); in isBubbleNotificationSuppressedFromShade() 1113 void updateBubble(NotificationEntry notif, boolean suppressFlyout, boolean showInShade) { in updateBubble() argument 1119 inflateAndAdd(bubble, suppressFlyout, showInShade); in updateBubble() 1122 void inflateAndAdd(Bubble bubble, boolean suppressFlyout, boolean showInShade) { in inflateAndAdd() argument 1126 bubble.inflate(b -> mBubbleData.notificationEntryUpdated(b, suppressFlyout, showInShade), in inflateAndAdd() 1332 && (!bubble.showInShade()
|
D | BubbleData.java | 264 void notificationEntryUpdated(Bubble bubble, boolean suppressFlyout, boolean showInShade) { in notificationEntryUpdated() argument 292 boolean suppress = isBubbleExpandedAndSelected || !showInShade || !bubble.showInShade(); in notificationEntryUpdated()
|