Home
last modified time | relevance | path

Searched refs:isNotificationBundlingEnabled (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DBundleCombinedPreferenceControllerTest.java124 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(true); in updatePrefValues_reflectsSettings()
141 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(false); in updatePrefValues_typesGoneWhenGlobalOff()
157 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(true); in turnOffGlobalSwitch_updatesBackendAndTypeSwitches()
164 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(false); in turnOffGlobalSwitch_updatesBackendAndTypeSwitches()
178 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(false); in turnOnGlobalSwitch_updatesBackendAndTypeSwitches()
183 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(true); in turnOnGlobalSwitch_updatesBackendAndTypeSwitches()
197 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(true); in turnOnTypeBundle_updatesBackend_doesNotChangeGlobalSwitch()
211 when(mBackend.isNotificationBundlingEnabled(any())).thenReturn(true); in turnOffTypeBundle_lastOneChangesGlobalSwitch()
/packages/apps/Settings/src/com/android/settings/notification/
DBundlePreferenceController.java45 return mBackend.isNotificationBundlingEnabled(mContext) in getSummary()
DBundleCombinedPreferenceController.java90 boolean isBundlingEnabled = mBackend.isNotificationBundlingEnabled(mContext); in updatePrefValues()
DNotificationBackend.java687 public boolean isNotificationBundlingEnabled(Context context) { in isNotificationBundlingEnabled() method in NotificationBackend