Home
last modified time | relevance | path

Searched refs:BubblesManager (Results 1 – 16 of 16) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DBubbleCoordinator.java26 import com.android.systemui.wmshell.BubblesManager;
60 private final Optional<BubblesManager> mBubblesManagerOptional;
69 Optional<BubblesManager> bubblesManagerOptional, in BubbleCoordinator()
123 private final BubblesManager.NotifCallback mNotifCallback = new BubblesManager.NotifCallback() {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
H A DBubblesManager.java91 public class BubblesManager { class
120 public static BubblesManager create(Context context, in create()
139 return new BubblesManager(context, in create()
163 BubblesManager(Context context, in BubblesManager() method in BubblesManager
382 BubblesManager.this.onEntryAdded(entry); in setupNotifPipeline()
387 BubblesManager.this.onEntryUpdated(entry, fromSystem); in setupNotifPipeline()
394 BubblesManager.this.onEntryRemoved(entry); in setupNotifPipeline()
400 BubblesManager.this.onRankingUpdate(rankingMap); in setupNotifPipeline()
409 BubblesManager.this.onNotificationChannelModified( in setupNotifPipeline()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
H A DLaunchConversationActivity.java44 import com.android.systemui.wmshell.BubblesManager;
59 private final Optional<BubblesManager> mBubblesManagerOptional;
72 Optional<BubblesManager> bubblesManagerOptional, in LaunchConversationActivity()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationConversationInfo.java76 import com.android.systemui.wmshell.BubblesManager;
96 private Optional<BubblesManager> mBubblesManagerOptional;
211 Optional<BubblesManager> bubblesManagerOptional, in bindNotification()
275 && BubblesManager.areBubblesEnabled(mContext, mSbn.getUser())) { in bindActions()
555 && BubblesManager.areBubblesEnabled(mContext, mSbn.getUser()); in willShowAsBubble()
H A DExpandableNotificationRowController.java64 import com.android.systemui.wmshell.BubblesManager;
109 private final Optional<BubblesManager> mBubblesManagerOptional;
228 Optional<BubblesManager> bubblesManagerOptional, in ExpandableNotificationRowController()
H A DNotificationGutsManager.java72 import com.android.systemui.wmshell.BubblesManager;
112 private final Optional<BubblesManager> mBubblesManagerOptional;
142 Optional<BubblesManager> bubblesManagerOptional, in NotificationGutsManager()
H A DExpandableNotificationRow.java118 import com.android.systemui.wmshell.BubblesManager;
175 private Optional<BubblesManager> mBubblesManagerOptional;
1718 Optional<BubblesManager> bubblesManagerOptional,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
H A DSystemUIModule.java134 import com.android.systemui.wmshell.BubblesManager;
317 static Optional<BubblesManager> provideBubblesManager(Context context, in provideBubblesManager()
335 return Optional.ofNullable(BubblesManager.create(context, in provideBubblesManager()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarter.java81 import com.android.systemui.wmshell.BubblesManager;
111 private final Optional<BubblesManager> mBubblesManagerOptional;
150 Optional<BubblesManager> bubblesManagerOptional, in StatusBarNotificationActivityStarter()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
H A DLaunchConversationActivityTest.java53 import com.android.systemui.wmshell.BubblesManager;
96 private BubblesManager mBubblesManager;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowControllerTest.kt59 import com.android.systemui.wmshell.BubblesManager
106 private val bubblesManager: BubblesManager = mock()
H A DNotificationGutsManagerTest.java87 import com.android.systemui.wmshell.BubblesManager;
132 @Mock private BubblesManager mBubblesManager;
H A DNotificationTestHelper.java93 import com.android.systemui.wmshell.BubblesManager;
608 Optional.of(mock(BubblesManager.class)), in generateRow()
H A DNotificationConversationInfoTest.java84 import com.android.systemui.wmshell.BubblesManager;
140 private BubblesManager mBubblesManager;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarterTest.java98 import com.android.systemui.wmshell.BubblesManager;
144 private BubblesManager mBubblesManager;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DBubblesTest.java183 private BubblesManager.NotifCallback mNotifCallback;
230 private BubblesManager mBubblesManager;
416 mBubblesManager = new BubblesManager( in setUp()