Home
last modified time | relevance | path

Searched refs:TvExtender (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationTest.java80 nb.extend(new Notification.TvExtender().setChannelId("different channel")); in testStripsExtendersInLowRamModeNoWhitelistNoTv()
92 assertEquals("different channel", new Notification.TvExtender(before).getChannelId()); in testStripsExtendersInLowRamModeNoWhitelistNoTv()
93 assertNull(new Notification.TvExtender(after).getChannelId()); in testStripsExtendersInLowRamModeNoWhitelistNoTv()
106 nb.extend(new Notification.TvExtender().setChannelId("different channel")); in testStripsExtendersInLowRamModeHasWhitelist()
118 assertEquals("different channel", new Notification.TvExtender(before).getChannelId()); in testStripsExtendersInLowRamModeHasWhitelist()
119 assertEquals("different channel", new Notification.TvExtender(after).getChannelId()); in testStripsExtendersInLowRamModeHasWhitelist()
157 nb.extend(new Notification.TvExtender().setChannelId("different channel")); in testDoesNotStripsExtendersInNormalRamMode()
165 assertEquals("different channel", new Notification.TvExtender(before).getChannelId()); in testDoesNotStripsExtendersInNormalRamMode()
DNotificationManagerServiceTest.java460 Notification.TvExtender extender) { in generateNotificationRecord()
465 Notification.TvExtender extender, boolean isBubble) { in generateNotificationRecord()
1485 Notification.TvExtender tv = new Notification.TvExtender().setChannelId("foo"); in testTvExtenderChannelOverride_onTv()
1500 Notification.TvExtender tv = new Notification.TvExtender().setChannelId("foo"); in testTvExtenderChannelOverride_notOnTv()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
DPipNotification.java154 .extend(new Notification.TvExtender() in PipNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java221 .extend(new Notification.TvExtender()); in updateMissingPrivateVolumes()
249 .extend(new Notification.TvExtender()); in onDiskScannedInternal()
584 .extend(new Notification.TvExtender()); in buildNotificationBuilder()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkNotificationManager.java274 builder.extend(new Notification.TvExtender().setChannelId(channelId)); in showNotification()
/frameworks/base/api/
Dsystem-removed.txt20 public static final class Notification.TvExtender implements android.app.Notification.Extender {
Dsystem-current.txt524 public static final class Notification.TvExtender implements android.app.Notification.Extender {
525 ctor public Notification.TvExtender();
526 ctor public Notification.TvExtender(android.app.Notification);
533 method public android.app.Notification.TvExtender setChannel(String);
534 method public android.app.Notification.TvExtender setChannelId(String);
535 method public android.app.Notification.TvExtender setContentIntent(android.app.PendingIntent);
536 method public android.app.Notification.TvExtender setDeleteIntent(android.app.PendingIntent);
537 method public android.app.Notification.TvExtender setSuppressShowOverApps(boolean);
/frameworks/base/core/java/android/app/
DNotification.java2495 if (TvExtender.EXTRA_TV_EXTENDER.equals(key)) { in lightenPayload()
5981 clone.extras.remove(Notification.TvExtender.EXTRA_TV_EXTENDER);
10194 public static final class TvExtender implements Extender { class in Notification.Builder
10216 public TvExtender() { in TvExtender() method in Notification.Builder.TvExtender
10225 public TvExtender(Notification notif) { in TvExtender() method in Notification.Builder.TvExtender
10274 public TvExtender setChannel(String channelId) { in setChannel()
10284 public TvExtender setChannelId(String channelId) { in setChannelId()
10307 public TvExtender setContentIntent(PendingIntent intent) { in setContentIntent()
10327 public TvExtender setDeleteIntent(PendingIntent intent) { in setDeleteIntent()
10346 public TvExtender setSuppressShowOverApps(boolean suppress) { in setSuppressShowOverApps()
/frameworks/base/services/core/java/com/android/server/storage/
DDeviceStorageMonitorService.java495 .extend(new Notification.TvExtender() in updateNotifications()
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbDeviceManager.java1212 .extend(new Notification.TvExtender() in updateAdbNotification()
/frameworks/base/packages/Shell/src/com/android/shell/
DBugreportProgressService.java1088 .extend(new Notification.TvExtender()); in newBaseNotification()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java4689 if (mIsTelevision && (new Notification.TvExtender(notification)).getChannelId() != null) {
4690 channelId = (new Notification.TvExtender(notification)).getChannelId();