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/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/tests/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManagerTest.java41 import static android.app.people.PeopleSpaceTile.SHOW_CONVERSATIONS;
1318 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackground()
1332 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundWithUserQuieted()
1344 assertThat(tile.getNotificationPolicyState()).isEqualTo(SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundWithPackageSuspended()
1354 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundNotInDnd()
1369 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundAllConversations()
1437 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundAllowNoConversationsAllowStarredContactMessages()
1465 assertThat(tile.getNotificationPolicyState()).isEqualTo(expected | SHOW_CONVERSATIONS); in testUpdateWidgetsFromBroadcastInBackgroundAllowVisualEffectsAndAllowAlarmsOnly()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManager.java1209 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
1214 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
1220 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
1240 return PeopleSpaceTile.SHOW_CONVERSATIONS; in getNotificationPolicyState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
DPeopleTileViewHelper.java314 if ((notificationPolicyState & PeopleSpaceTile.SHOW_CONVERSATIONS) != 0) { in isDndBlockingTileData()