HomeSort by relevance Sort by last modified time
    Searched defs:mNotificationManager (Results 76 - 100 of 153) sorted by null

1 2 34 5 6 7

  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
ZenModeMediaPreferenceControllerTest.java 56 private NotificationManager mNotificationManager;
69 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
73 when(mNotificationManager.getNotificationPolicy()).thenReturn(mPolicy);
ZenModeMessagesPreferenceControllerTest.java 55 private NotificationManager mNotificationManager;
78 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
83 when(mNotificationManager.getNotificationPolicy()).thenReturn(mPolicy);
ZenModeRemindersPreferenceControllerTest.java 56 private NotificationManager mNotificationManager;
71 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
75 when(mNotificationManager.getNotificationPolicy()).thenReturn(mPolicy);
ZenModeRepeatCallersPreferenceControllerTest.java 56 private NotificationManager mNotificationManager;
70 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
74 when(mNotificationManager.getNotificationPolicy()).thenReturn(mPolicy);
ZenModeStarredContactsPreferenceControllerTest.java 55 private NotificationManager mNotificationManager;
72 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
75 when(mNotificationManager.getNotificationPolicy()).thenReturn(mPolicy);
ZenModeSystemPreferenceControllerTest.java 57 private NotificationManager mNotificationManager;
72 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
76 when(mNotificationManager.getNotificationPolicy()).thenReturn(mPolicy);
ZenModeVisEffectPreferenceControllerTest.java 67 @Mock NotificationManager mNotificationManager;
80 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
81 when(mNotificationManager.getNotificationPolicy()).thenReturn(
ZenModeVisEffectsAllPreferenceControllerTest.java 72 @Mock NotificationManager mNotificationManager;
82 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
83 when(mNotificationManager.getNotificationPolicy()).thenReturn(
ZenModeVisEffectsNonePreferenceControllerTest.java 71 @Mock NotificationManager mNotificationManager;
82 shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNotificationManager);
83 when(mNotificationManager.getNotificationPolicy()).thenReturn(
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 65 private NotificationManager mNotificationManager;
108 mNotificationManager = (NotificationManager) getActivity().getSystemService(Context
208 mNotificationManager.notify(mIncrementalNotificationId, createNotification(priority,
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 65 private NotificationManager mNotificationManager;
108 mNotificationManager = (NotificationManager) getActivity().getSystemService(Context
208 mNotificationManager.notify(mIncrementalNotificationId, createNotification(priority,
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 65 private NotificationManager mNotificationManager;
108 mNotificationManager = (NotificationManager) getActivity().getSystemService(Context
208 mNotificationManager.notify(mIncrementalNotificationId, createNotification(priority,
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
MediaNotificationManager.java 62 private NotificationManager mNotificationManager;
80 mNotificationManager = (NotificationManager) mService
95 mNotificationManager.cancelAll();
134 mNotificationManager.cancel(NOTIFICATION_ID);
203 mNotificationManager.notify(NOTIFICATION_ID, notification);
214 mNotificationManager.notify(NOTIFICATION_ID, notification);
349 mNotificationManager.notify(NOTIFICATION_ID, builder.build());
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
NotificationController.java 68 private final NotificationManager mNotificationManager;
77 mNotificationManager = (NotificationManager)
81 mNotificationManager.createNotificationChannel(
85 mNotificationManager.createNotificationChannel(
131 mNotificationManager.cancel(removedPrintJob.flattenToString(), 0);
219 mNotificationManager.notify(printJob.getId().flattenToString(), 0, builder.build());
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
MediaNotificationManager.java 66 private NotificationManagerCompat mNotificationManager;
84 mNotificationManager = NotificationManagerCompat.from(mService);
98 mNotificationManager.cancelAll();
137 mNotificationManager.cancel(NOTIFICATION_ID);
210 mNotificationManager.notify(NOTIFICATION_ID, notification);
221 mNotificationManager.notify(NOTIFICATION_ID, notification);
346 mNotificationManager.notify(NOTIFICATION_ID, builder.build());
  /packages/apps/Camera2/src/com/android/camera/processing/
ProcessingService.java 78 private NotificationManager mNotificationManager;
117 mNotificationManager = AndroidServices.instance().provideNotificationManager();
255 mNotificationManager.notify(CAMERA_NOTIFICATION_ID, mNotificationBuilder.build());
  /packages/apps/Contacts/src/com/android/contacts/
SimImportService.java 263 private final NotificationManager mNotificationManager;
273 mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
341 mNotificationManager.notify(NOTIFICATION_ID, notification);
  /packages/apps/Music/src/com/android/music/utils/
MediaNotificationManager.java 63 private NotificationManager mNotificationManager;
81 mNotificationManager =
96 mNotificationManager.cancelAll();
135 mNotificationManager.cancel(NOTIFICATION_ID);
205 mNotificationManager.notify(NOTIFICATION_ID, notification);
216 mNotificationManager.notify(NOTIFICATION_ID, notification);
348 mNotificationManager.notify(NOTIFICATION_ID, builder.build());
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeBackend.java 50 private final NotificationManager mNotificationManager;
64 mNotificationManager = (NotificationManager) context.getSystemService(
71 if (mNotificationManager != null) {
72 mPolicy = mNotificationManager.getNotificationPolicy();
93 mNotificationManager.setZenMode(Settings.Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS,
156 mNotificationManager.setNotificationPolicy(mPolicy);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java 161 private NotificationManager mNotificationManager;
184 mNotificationManager.notify(NOTIFICATION_ID, notification);
209 mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
213 mNotificationManager.createNotificationChannel(new NotificationChannel(
358 mNotificationManager.cancel(NOTIFICATION_ID);
  /frameworks/base/services/core/java/com/android/server/
UiModeManagerService.java 110 private NotificationManager mNotificationManager;
682 if (mNotificationManager == null) {
683 mNotificationManager = (NotificationManager)
687 if (mNotificationManager != null) {
706 mNotificationManager.notifyAsUser(null,
709 mNotificationManager.cancelAsUser(null,
    [all...]
  /packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
Player.java 91 private NotificationManager mNotificationManager;
116 mNotificationManager =
194 mNotificationManager.cancelAll();
367 mNotificationManager.notify(NOTIFICATION_ID, notification);
  /packages/apps/TV/src/com/android/tv/recommendation/
NotificationService.java 100 private NotificationManager mNotificationManager;
149 mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
296 mNotificationManager.cancel(NOTIFY_TAG, notificationId);
328 mNotificationManager.cancel(NOTIFY_TAG, notificationId);
344 mNotificationManager.cancel(NOTIFY_TAG, i);
467 mNotificationManager.notify(NOTIFY_TAG, notificationId, notification);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ExportProcessor.java 55 private final NotificationManager mNotificationManager;
79 mNotificationManager =
281 mNotificationManager.notify(NotificationImportExportListener.DEFAULT_NOTIFICATION_TAG,
292 mNotificationManager.notify(NotificationImportExportListener.DEFAULT_NOTIFICATION_TAG,
312 mNotificationManager.notify(NotificationImportExportListener.DEFAULT_NOTIFICATION_TAG,
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
IngestService.java 78 private NotificationManager mNotificationManager;
87 mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
159 mNotificationManager.notify(R.id.ingest_notification_scanning,
164 mNotificationManager.cancel(R.id.ingest_notification_importing);
165 mNotificationManager.cancel(R.id.ingest_notification_scanning);
214 mNotificationManager.cancel(R.id.ingest_notification_scanning);
215 mNotificationManager.cancel(R.id.ingest_notification_importing);
234 mNotificationManager.notify(R.id.ingest_notification_importing,
251 mNotificationManager.notify(R.id.ingest_notification_importing,
268 mNotificationManager.notify(R.id.ingest_notification_scanning
    [all...]

Completed in 1130 milliseconds

1 2 34 5 6 7