Home
last modified time | relevance | path

Searched refs:userSentiment (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationBlockingHelperManagerTest.java129 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_shown()
145 groupRow.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_notShownForMultiChannelGroup()
155 groupRow.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_shownForLargeGroup()
170 childRow.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
181 row.getEntry().userSentiment = USER_SENTIMENT_NEUTRAL; in testPerhapsShowBlockingHelper_notShownDueToNeutralUserSentiment()
190 row.getEntry().userSentiment = USER_SENTIMENT_POSITIVE; in testPerhapsShowBlockingHelper_notShownDueToPositiveUserSentiment()
198 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_notShownDueToShadeVisibility()
209 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_notShownDueToNonblockability()
222 childRow.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup()
230 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testBlockingHelperShowAndDismiss()
DNotificationGutsManagerTest.java315 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testInitializeNotificationInfoView_showBlockingHelper()
344 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testInitializeNotificationInfoView_dontShowBlockingHelper()
373 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testInitializeNotificationInfoView_highPriority()
404 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testInitializeNotificationInfoView_PassesAlongProvisionedState()
434 row.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testInitializeNotificationInfoView_withInitialAction()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationBlockingHelperManager.java90 if ((row.getEntry().userSentiment == USER_SENTIMENT_NEGATIVE || DEBUG) in perhapsShowBlockingHelper()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java105 public int userSentiment = NotificationListenerService.Ranking.USER_SENTIMENT_NEUTRAL; field in NotificationEntry
196 userSentiment = ranking.getUserSentiment(); in populateFromRanking()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java295 assertEquals(mEntry.userSentiment, in testAddNotification()
320 assertEquals(mEntry.userSentiment, in testUpdateNotification()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java1788 int userSentiment, boolean hidden, long lastAudiblyAlertedMs, in populate() argument
1805 mUserSentiment = userSentiment; in populate()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecord.java1070 private void setUserSentiment(int userSentiment) { in setUserSentiment() argument
1071 mUserSentiment = userSentiment; in setUserSentiment()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DNotificationDataTest.java347 assertEquals(Ranking.USER_SENTIMENT_NEGATIVE, entry.userSentiment); in testCreateNotificationDataEntry_RankingUpdate()