Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/notification/app/
DBubblePreferenceController.java121 mChannel.setAllowBubbles((boolean) newValue); in onPreferenceChange()
138 mBackend.setAllowBubbles(mAppRow.pkg, mAppRow.uid, value); in onPreferenceChange()
160 backend.setAllowBubbles(pkg, uid, BUBBLE_PREFERENCE_NONE); in revertBubblesApproval()
174 backend.setAllowBubbles(pkg, uid, pref); in applyBubblesApproval()
DConversationPriorityPreferenceController.java86 mChannel.setAllowBubbles(true); in onPreferenceChange()
88 mChannel.setAllowBubbles(false); in onPreferenceChange()
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
DConversationPriorityPreferenceControllerTest.java230 channel.setAllowBubbles(false); in testImportanceLowToDefault()
250 channel.setAllowBubbles(false); in testImportanceDefaultToLow()
270 channel.setAllowBubbles(true); in testImportanceLowToDefault_bubblesMaintained()
290 channel.setAllowBubbles(true); in testImportancePriorityToDefault()
DBubblePreferenceControllerTest.java434 verify(mBackend, times(1)).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_ALL)); in onPreferenceChange_app_all()
454 verify(mBackend, never()).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_ALL)); in testOnPreferenceChange_app_all_offGlobally()
474 verify(mBackend, times(1)).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_NONE)); in onPreferenceChange_app_selected()
493 verify(mBackend, times(1)).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_NONE)); in onPreferenceChange_app_none()
DAppBubbleListPreferenceControllerTest.java170 verify(ccw.getNotificationChannel()).setAllowBubbles(DEFAULT_ALLOW_BUBBLE); in clickConversationPref_updatesChannel()
/packages/apps/Settings/src/com/android/settings/notification/
DAppBubbleListPreferenceController.java136 conversation.getNotificationChannel().setAllowBubbles(DEFAULT_ALLOW_BUBBLE);
DNotificationBackend.java241 public boolean setAllowBubbles(String pkg, int uid, int preference) { in setAllowBubbles() method in NotificationBackend