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.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()
355 appRow.bubblePreference = BUBBLE_PREFERENCE_SELECTED; in updateState_app()
369 appRow.bubblePreference = BUBBLE_PREFERENCE_ALL; in updateState_app_offGlobally()
382 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.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()
/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()
700 public int bubblePreference = NotificationManager.BUBBLE_PREFERENCE_NONE; field in NotificationBackend.AppRow
/packages/apps/Settings/src/com/android/settings/notification/app/
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()
DBubbleSummaryPreferenceController.java96 int backEndPref = mAppRow.bubblePreference; in getSummary()