HomeSort by relevance Sort by last modified time
    Searched refs:mNM (Results 1 - 9 of 9) sorted by null

  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java 43 NotificationManager mNM;
57 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
76 mNM.notify(1, n);
88 mNM.notify(1, n);
98 mNM.notify(1, n);
106 mNM.notify(1, new Notification(NotificationTestList.this,
112 mNM.notify(2, new Notification(NotificationTestList.this,
118 mNM.notify(3, new Notification(NotificationTestList.this,
132 mNM.notify(1, n);
142 mNM.notify(1, n)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java 46 private NotificationManager mNM;
61 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
78 mNM.cancel(R.string.local_service_started);
114 mNM.notify(R.string.local_service_started, notification);
AlarmService_Service.java 43 NotificationManager mNM;
47 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
62 mNM.cancel(R.string.alarm_service_started);
116 mNM.notify(R.string.alarm_service_started, notification);
NotifyingService.java 50 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
63 mNM.cancel(MOOD_NOTIFICATIONS);
115 mNM.notify(MOOD_NOTIFICATIONS, notification);
128 private NotificationManager mNM;
MessengerService.java 54 NotificationManager mNM;
121 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
130 mNM.cancel(R.string.remote_service_started);
166 mNM.notify(R.string.remote_service_started, notification);
ForegroundService.java 57 private NotificationManager mNM;
86 mNM.notify(id, notification);
111 mNM.cancel(id);
117 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
ServiceStartArguments.java 55 private NotificationManager mNM;
104 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
194 mNM.notify(R.string.service_created, notification);
198 mNM.cancel(R.string.service_created);
RemoteService.java 67 NotificationManager mNM;
71 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
85 mNM.cancel(R.string.remote_service_started);
195 mNM.notify(R.string.remote_service_started, notification);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 49 private NotificationManager mNM;
60 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
65 mNM.notify(NOTIFY_ID, note);
114 mNM.cancel(NOTIFY_ID);

Completed in 116 milliseconds