Home
last modified time | relevance | path

Searched refs:isNotificationBundlingSupported (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DBundleCombinedPreferenceControllerTest.java101 when(mBackend.isNotificationBundlingSupported()).thenReturn(true); in isAvailable_flagEnabledNasSupports_shouldReturnTrue()
109 when(mBackend.isNotificationBundlingSupported()).thenReturn(false); in isAvailable_flagEnabledNasDoesNotSupport_shouldReturnFalse()
116 when(mBackend.isNotificationBundlingSupported()).thenReturn(true); in isAvailable_flagDisabledNasSupports_shouldReturnFalse()
DAdjustmentExcludedAppsPreferenceControllerTest.java87 when(mBackend.isNotificationBundlingSupported()).thenReturn(true); in testIsAvailable()
/packages/apps/Settings/src/com/android/settings/notification/
DBundleManageAppsPreferenceController.java39 if (Flags.notificationClassificationUi() && mBackend.isNotificationBundlingSupported()) { in getAvailabilityStatus()
DBundlePreferenceController.java39 return Flags.notificationClassificationUi() && mBackend.isNotificationBundlingSupported() in getAvailabilityStatus()
DBundleCombinedPreferenceController.java63 if (Flags.notificationClassificationUi() && mBackend.isNotificationBundlingSupported()) { in getAvailabilityStatus()
DAdjustmentExcludedAppsPreferenceController.java97 if (KEY_TYPE.equals(mAdjustmentKey) && mBackend.isNotificationBundlingSupported()) { in getAvailabilityStatus()
DNotificationBackend.java678 public boolean isNotificationBundlingSupported() { in isNotificationBundlingSupported() method in NotificationBackend