Home
last modified time | relevance | path

Searched refs:bubblePreference (Results 1 – 10 of 10) sorted by relevance

/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
H A DBubblePreferenceControllerTest.java148 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in isAvailable_channel_notIfAppOff()
224 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_defaultChannel()
237 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_channel()
250 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_filteredIn()
263 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_filteredOut()
342 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_app()
349 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in updateState_app()
369 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_app_offGlobally()
463 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in onPreferenceChange_app_selected()
482 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in onPreferenceChange_app_none()
[all …]
H A DAppBubbleListPreferenceControllerTest.java106 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in isAvailable_BUBBLE_PREFERENCE_NONE_false()
115 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in isAvailable_BUBBLE_PREFERENCE_SELECTED_true()
124 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_BUBBLE_PREFERENCE_ALL_true()
133 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in filterAndSortConversations_BUBBLE_PREFERENCE_SELECTED_filtersAllowedBubbles()
146 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in filterAndSortConversations_BUBBLE_PREFERENCE_ALL_filtersExcludedBubbles()
159 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in clickConversationPref_updatesChannel()
H A DBubbleSummaryPreferenceControllerTest.java169 mAppRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_setsIntent()
195 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in getSummary_BUBBLE_PREFERENCE_NONEisSelected_returnsNoneString()
208 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in getSummary_BUBBLE_PREFERENCE_ALLisSelected_returnsAllString()
221 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in getSummary_BUBBLE_PREFERENCE_SELECTEDisSelected_returnsSelectedString()
/aosp12/packages/apps/Settings/src/com/android/settings/notification/
H A DAppBubbleListPreferenceController.java98 if (mAppRow.bubblePreference == BUBBLE_PREFERENCE_NONE) { in isAvailable()
111 if (mAppRow.bubblePreference == BUBBLE_PREFERENCE_SELECTED) { in filterAndSortConversations()
113 } else if (mAppRow.bubblePreference == BUBBLE_PREFERENCE_ALL) { in filterAndSortConversations()
124 return mAppRow.bubblePreference == BUBBLE_PREFERENCE_SELECTED
134 pref.setOnClickBubblesConversation(mAppRow.bubblePreference == BUBBLE_PREFERENCE_ALL);
H A DNotificationBackend.java92 row.bubblePreference = getBubblePreference(row.pkg, row.uid); in loadAppRow()
700 public int bubblePreference = NotificationManager.BUBBLE_PREFERENCE_NONE; field in NotificationBackend.AppRow
/aosp12/packages/apps/Settings/src/com/android/settings/notification/app/
H A DBubblePreferenceController.java82 return mAppRow != null && mAppRow.bubblePreference != BUBBLE_PREFERENCE_NONE; in isAvailable()
100 int backEndPref = mAppRow.bubblePreference; in updateState()
137 mAppRow.bubblePreference = value; in onPreferenceChange()
H A DBubbleSummaryPreferenceController.java96 int backEndPref = mAppRow.bubblePreference; in getSummary()
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DPreferencesHelper.java414 boolean showBadge, int bubblePreference) { in getOrCreatePackagePreferencesLocked() argument
428 r.bubblePreference = bubblePreference; in getOrCreatePackagePreferencesLocked()
550 || r.bubblePreference != DEFAULT_BUBBLE_PREFERENCE in writeXml()
566 if (r.bubblePreference != DEFAULT_BUBBLE_PREFERENCE) { in writeXml()
567 out.attributeInt(null, ATT_ALLOW_BUBBLE, r.bubblePreference); in writeXml()
625 public void setBubblesAllowed(String pkg, int uid, int bubblePreference) { in setBubblesAllowed() argument
629 changed = p.bubblePreference != bubblePreference; in setBubblesAllowed()
630 p.bubblePreference = bubblePreference; in setBubblesAllowed()
648 return getOrCreatePackagePreferencesLocked(pkg, uid).bubblePreference; in getBubblePreference()
2344 p.bubblePreference = DEFAULT_BUBBLE_PREFERENCE; in clearData()
[all …]
H A DNotificationManagerService.java3422 public void setBubblesAllowed(String pkg, int uid, int bubblePreference) {
3424 mPreferencesHelper.setBubblesAllowed(pkg, uid, bubblePreference);
/aosp12/frameworks/base/core/java/android/app/
H A DINotificationManager.aidl86 void setBubblesAllowed(String pkg, int uid, int bubblePreference); in setBubblesAllowed() argument