Home
last modified time | relevance | path

Searched refs:mBubblesOptional (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationClicker.java43 private final Optional<Bubbles> mBubblesOptional; field in NotificationClicker
61 mBubblesOptional = bubblesOptional; in NotificationClicker()
103 if (!row.getEntry().isBubble() && mBubblesOptional.isPresent()) { in onClick()
104 mBubblesOptional.get().collapseStack(); in onClick()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DBubbleCoordinator.java61 private final Optional<Bubbles> mBubblesOptional; field in BubbleCoordinator
73 mBubblesOptional = bubblesOptional; in BubbleCoordinator()
91 return mBubblesOptional.isPresent()
92 && mBubblesOptional.get().isBubbleNotificationSuppressedFromShade(
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DShadeControllerImpl.java53 private final Optional<Bubbles> mBubblesOptional; field in ShadeControllerImpl
76 mBubblesOptional = bubblesOptional; in ShadeControllerImpl()
133 } else if (mBubblesOptional.isPresent()) { in animateCollapsePanels()
134 mBubblesOptional.get().collapseStack(); in animateCollapsePanels()
H A DNotificationIconAreaController.java74 private final Optional<Bubbles> mBubblesOptional; field in NotificationIconAreaController
136 mBubblesOptional = bubblesOptional; in NotificationIconAreaController()
326 if (mBubblesOptional.isPresent() in shouldShowNotificationIcon()
327 && mBubblesOptional.get().isBubbleExpanded(entry.getKey())) { in shouldShowNotificationIcon()
H A DStatusBar.java673 private final Optional<Bubbles> mBubblesOptional; field in StatusBar
835 mBubblesOptional = bubblesOptional; in StatusBar()
926 if (mBubblesOptional.isPresent()) { in start()
927 mBubblesOptional.get().setExpandListener(mBubbleExpandListener); in start()
1469 mBubblesOptional, in setUpPresenter()
2247 mBubblesOptional.ifPresent(bubbles -> bubbles.onStatusBarVisibilityChanged( in updateBubblesVisibility()
2640 if (mBubblesOptional.isPresent() && mBubblesOptional.get().isStackExpanded()) {
2641 mBubblesOptional.get().collapseStack();
2656 if (mBubblesOptional.isPresent() && mBubblesOptional.get().isStackExpanded()) {
2658 mMainExecutor.execute(() -> mBubblesOptional.get().collapseStack());
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/
H A DShellInitImpl.java51 private final Optional<BubbleController> mBubblesOptional; field in ShellInitImpl
87 mBubblesOptional = bubblesOptional; in ShellInitImpl()
118 mBubblesOptional.ifPresent(BubbleController::initialize); in init()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationViewHierarchyManager.java90 private final Optional<Bubbles> mBubblesOptional; field in NotificationViewHierarchyManager
138 mBubblesOptional = bubblesOptional; in NotificationViewHierarchyManager()
337 final boolean isBubbleNotificationSuppressedFromShade = mBubblesOptional.isPresent() in shouldSuppressActiveNotification()
338 && mBubblesOptional.get().isBubbleNotificationSuppressedFromShade( in shouldSuppressActiveNotification()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/legacy/
H A DNotificationGroupManagerLegacy.java84 private final Optional<Bubbles> mBubblesOptional; field in NotificationGroupManagerLegacy
99 mBubblesOptional = bubblesOptional; in NotificationGroupManagerLegacy()
307 if (mBubblesOptional.isPresent() && mBubblesOptional.get() in updateSuppression()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManager.java135 private Optional<Bubbles> mBubblesOptional; field in PeopleSpaceWidgetManager
175 mBubblesOptional = bubblesOptional; in PeopleSpaceWidgetManager()
249 mBubblesOptional = bubblesOptional; in PeopleSpaceWidgetManager()
535 && !shouldFilterOut(mBubblesOptional, entry)) in getGroupedConversationNotifications()