Home
last modified time | relevance | path

Searched refs:canShowBadge (Results 1 – 9 of 9) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/ui/
DNotificationChannelManager.java72 boolean canShowBadge = false; in createChannel()
80 canShowBadge = false; in createChannel()
88 canShowBadge = true; in createChannel()
96 canShowBadge = false; in createChannel()
104 channel.setShowBadge(canShowBadge); in createChannel()
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DBadgePreferenceControllerTest.java207 when(channel.canShowBadge()).thenReturn(true); in testUpdateState_channel()
215 when(channel.canShowBadge()).thenReturn(false); in testUpdateState_channel()
254 assertTrue(channel.canShowBadge()); in testOnPreferenceChange_on_channel()
274 assertFalse(channel.canShowBadge()); in testOnPreferenceChange_off_channel()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DNotificationBackend.java73 row.showBadge = canShowBadge(row.pkg, row.uid); in loadAppRow()
160 public boolean canShowBadge(String pkg, int uid) { in canShowBadge() method in NotificationBackend
162 return sINM.canShowBadge(pkg, uid); in canShowBadge()
DBadgePreferenceController.java74 pref.setChecked(mChannel.canShowBadge()); in updateState()
DNotificationStation.java442 .append(Boolean.toString(rank.canShowBadge())); in generateExtraText()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java75 row.showBadge = canShowBadge(row.pkg, row.uid); in loadAppRow()
168 public boolean canShowBadge(String pkg, int uid) { in canShowBadge() method in NotificationBackend
170 return sINM.canShowBadge(pkg, uid); in canShowBadge()
DBadgePreferenceController.java74 pref.setChecked(mChannel.canShowBadge()); in updateState()
DNotificationStation.java442 .append(Boolean.toString(rank.canShowBadge())); in generateExtraText()
/packages/apps/Launcher3/src/com/android/launcher3/notification/
DNotificationListener.java371 if (!mTempRanking.canShowBadge()) { in shouldBeFilteredOut()