Home
last modified time | relevance | path

Searched refs:SHOW_CONVERSATIONS (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/app/people/
DPeopleSpaceTile.java46 public static final int SHOW_CONVERSATIONS = 1 << 0; field in PeopleSpaceTile
287 mNotificationPolicyState = SHOW_CONVERSATIONS; in Builder()
297 mNotificationPolicyState = SHOW_CONVERSATIONS; in Builder()
314 mNotificationPolicyState = SHOW_CONVERSATIONS; in Builder()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManagerTest.java41 import static android.app.people.PeopleSpaceTile.SHOW_CONVERSATIONS;
1291 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackground()
1305 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundWithUserQuieted()
1317 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundWithPackageSuspended()
1327 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundNotInDnd()
1342 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundAllConversations()
1410 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundAllowNoConversationsAllowStarredContactMessages()
1438 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundAllowVisualEffectsAndAllowAlarmsOnly()
/frameworks/base/core/tests/coretests/src/android/app/people/
DPeopleSpaceTileTest.java19 import static android.app.people.PeopleSpaceTile.SHOW_CONVERSATIONS;
213 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testNotificationPolicyState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManager.java1174 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
1179 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
1185 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
1205 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
DPeopleTileViewHelper.java308 if ((notificationPolicyState & PeopleSpaceTile.SHOW_CONVERSATIONS) != 0) { in isDndBlockingTileData()