Home
last modified time | relevance | path

Searched refs:isBubbleExpanded (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/domain/interactor/
DNotificationIconsInteractorTest.kt98 whenever(bubbles.isBubbleExpanded(eq("notif1"))).thenReturn(true) in filteredEntrySet_noExpandedBubbles()
198 whenever(bubbles.isBubbleExpanded(eq("notif1"))).thenReturn(true) in filteredEntrySet_noExpandedBubbles()
304 whenever(bubbles.isBubbleExpanded(eq("notif1"))).thenReturn(true) in filteredEntrySet_noExpandedBubbles()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/domain/interactor/
DNotificationIconsInteractor.kt99 bubbles.getOrNull()?.isBubbleExpanded(model.key) == true -> false in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbles.java105 boolean isBubbleExpanded(String key); in isBubbleExpanded() method
DBubbleController.java2558 public synchronized boolean isBubbleExpanded(String key) { in isBubbleExpanded() method in BubbleController.BubblesImpl.CachedState
2603 public boolean isBubbleExpanded(String key) { in isBubbleExpanded() method in BubbleController.BubblesImpl
2604 return mCachedState.isBubbleExpanded(key); in isBubbleExpanded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLegacyNotificationIconAreaControllerImpl.java292 && mBubblesOptional.get().isBubbleExpanded(entry.getKey())) { in shouldShowNotificationIcon()