Searched refs:setAllowBubbles (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Settings/src/com/android/settings/notification/app/ |
D | BubblePreferenceController.java | 116 mChannel.setAllowBubbles((boolean) newValue); in onPreferenceChange() 133 mBackend.setAllowBubbles(mAppRow.pkg, mAppRow.uid, value); in onPreferenceChange() 153 backend.setAllowBubbles(pkg, uid, BUBBLE_PREFERENCE_NONE); in revertBubblesApproval() 167 backend.setAllowBubbles(pkg, uid, pref); in applyBubblesApproval()
|
D | ConversationPriorityPreferenceController.java | 86 mChannel.setAllowBubbles(true); in onPreferenceChange() 88 mChannel.setAllowBubbles(false); in onPreferenceChange()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/ |
D | ConversationPriorityPreferenceControllerTest.java | 214 channel.setAllowBubbles(false); in testImportanceLowToDefault() 234 channel.setAllowBubbles(false); in testImportanceDefaultToLow() 254 channel.setAllowBubbles(true); in testImportanceLowToDefault_bubblesMaintained() 274 channel.setAllowBubbles(true); in testImportancePriorityToDefault()
|
D | BubblePreferenceControllerTest.java | 426 verify(mBackend, times(1)).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_ALL)); in onPreferenceChange_app_all() 446 verify(mBackend, never()).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_ALL)); in testOnPreferenceChange_app_all_offGlobally() 466 verify(mBackend, times(1)).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_NONE)); in onPreferenceChange_app_selected() 485 verify(mBackend, times(1)).setAllowBubbles(any(), anyInt(), eq(BUBBLE_PREFERENCE_NONE)); in onPreferenceChange_app_none()
|
D | AppBubbleListPreferenceControllerTest.java | 170 verify(ccw.getNotificationChannel()).setAllowBubbles(DEFAULT_ALLOW_BUBBLE); in clickConversationPref_updatesChannel()
|
/packages/apps/Settings/src/com/android/settings/notification/ |
D | AppBubbleListPreferenceController.java | 136 conversation.getNotificationChannel().setAllowBubbles(DEFAULT_ALLOW_BUBBLE);
|
D | NotificationBackend.java | 227 public boolean setAllowBubbles(String pkg, int uid, int preference) { in setAllowBubbles() method in NotificationBackend
|