Home
last modified time | relevance | path

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

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DBubbleExtractorTest.java21 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
169 BUBBLE_PREFERENCE_ALL /* app */, in testAppYesChannelNo()
183 BUBBLE_PREFERENCE_ALL /* app */, in testAppYesChannelDefault()
197 BUBBLE_PREFERENCE_ALL /* app */, in testAppYesChannelYes()
211 BUBBLE_PREFERENCE_ALL /* app */, in testAppYesChannelYesFeatureNo()
321 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubble_false_previouslyRemoved()
339 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubble_true_shortcutBubble()
355 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubble_true_intentBubble()
371 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubble_false_noIntentInvalidShortcut()
388 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubble_false_invalidIntentNoShortcut()
[all …]
DNotificationManagerServiceTest.java25 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
4550 mBinderService.setBubblesAllowed(PKG, mUid, BUBBLE_PREFERENCE_ALL); in testUserApprovedBubblesForPackageAll()
4553 BUBBLE_PREFERENCE_ALL); in testUserApprovedBubblesForPackageAll() local
5252 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubble()
5294 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubbleNotifs_noFlag_whenAppForeground()
5324 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubbleNotifs_flag_messaging()
5343 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubbleNotifs_noFlag_noShortcut()
5385 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubbleNotifs_noFlag_notBubble()
5411 BUBBLE_PREFERENCE_ALL /* app */, in testFlagBubbleNotifs_noFlag_messaging_channelNotAllowed()
5511 BUBBLE_PREFERENCE_ALL /* app */, in testCancelNotificationsFromListener_suppressesBubble()
[all …]
DPreferencesHelperTest.java22 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
2497 assertEquals(BUBBLE_PREFERENCE_ALL, mHelper.getBubblePreference(PKG_O, UID_O)); in testBubblePreference_upgradeWithSAWPermission()
2518 assertEquals(BUBBLE_PREFERENCE_ALL, mHelper.getBubblePreference(PKG_O, UID_O)); in testBubblePreference_upgradeWithSAWThenUserOverride()
2902 mHelper.setBubblesAllowed(PKG_O, UID_O, BUBBLE_PREFERENCE_ALL); in testSetBubblesAllowed_none()
2903 assertEquals(mHelper.getBubblePreference(PKG_O, UID_O), BUBBLE_PREFERENCE_ALL); in testSetBubblesAllowed_none() local
2914 mHelper.setBubblesAllowed(PKG_O, UID_O, BUBBLE_PREFERENCE_ALL); in testSetBubblesAllowed_all()
2915 assertEquals(mHelper.getBubblePreference(PKG_O, UID_O), BUBBLE_PREFERENCE_ALL); in testSetBubblesAllowed_all() local
/frameworks/base/services/core/java/com/android/server/notification/
DBubbleExtractor.java21 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
95 } else if (bubblePreference == BUBBLE_PREFERENCE_ALL) { in process()
DPreferencesHelper.java21 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
240 ? BUBBLE_PREFERENCE_ALL in readXml()
DNotificationManagerService.java35 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
3116 == BUBBLE_PREFERENCE_ALL;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationConversationInfo.java19 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
285 if (mAppBubble == BUBBLE_PREFERENCE_ALL) { in bindActions()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationConversationInfoTest.java19 import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
562 .thenReturn(BUBBLE_PREFERENCE_ALL); in testBindNotification_default_allCanBubble()
/frameworks/base/core/java/android/app/
DNotificationManager.java462 public static final int BUBBLE_PREFERENCE_ALL = 1; field in NotificationManager