Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
DBubblePreferenceControllerTest.java155 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in isAvailable_channel_notIfAppOff()
231 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_defaultChannel()
244 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_channel()
257 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_filteredIn()
270 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in isAvailable_filteredOut()
334 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_app()
341 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in updateState_app()
347 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in updateState_app()
361 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_app_offGlobally()
374 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in onPreferenceChange_on_channel()
[all …]
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()
DBubbleSummaryPreferenceControllerTest.java173 mAppRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_setsIntent()
199 appRow.bubblePreference = BUBBLE_PREFERENCE_NONE; in getSummary_BUBBLE_PREFERENCE_NONEisSelected_returnsNoneString()
212 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in getSummary_BUBBLE_PREFERENCE_ALLisSelected_returnsAllString()
225 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in getSummary_BUBBLE_PREFERENCE_SELECTEDisSelected_returnsSelectedString()
/packages/apps/Settings/src/com/android/settings/notification/
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);
DNotificationBackend.java92 row.bubblePreference = getBubblePreference(row.pkg, row.uid); in loadAppRow()
696 public int bubblePreference = NotificationManager.BUBBLE_PREFERENCE_NONE; field in NotificationBackend.AppRow
/packages/apps/Settings/src/com/android/settings/notification/app/
DBubblePreferenceController.java77 return mAppRow != null && mAppRow.bubblePreference != BUBBLE_PREFERENCE_NONE; in isAvailable()
95 int backEndPref = mAppRow.bubblePreference; in updateState()
132 mAppRow.bubblePreference = value; in onPreferenceChange()
DBubbleSummaryPreferenceController.java92 int backEndPref = mAppRow.bubblePreference; in getSummary()