OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mNM
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java
45
NotificationManager
mNM
;
82
mNM
= (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
102
mNM
.notify(1, n);
113
mNM
.cancel(1);
126
mNM
.notify(1, n);
138
mNM
.notify(1, n);
148
mNM
.notify(1, n);
156
mNM
.notify(1, n);
166
mNM
.notify(1, n);
182
mNM
.notify(1, n)
[
all
...]
NotificationBuilderTest.java
54
NotificationManager
mNM
;
61
mNM
= (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
189
mNM
.cancel(id);
201
mNM
.notify(NOTIFY_TAG, id, n);
207
mNM
.cancel(NOTIFY_TAG, id);
/development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java
46
private NotificationManager
mNM
;
65
mNM
= (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
82
mNM
.cancel(NOTIFICATION);
117
mNM
.notify(NOTIFICATION, 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
49
mNM
= (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
62
mNM
.cancel(MOOD_NOTIFICATIONS);
114
mNM
.notify(MOOD_NOTIFICATIONS, notification);
127
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
59
private NotificationManager
mNM
;
95
mNM
.notify(id, notification);
112
mNM
.cancel(id);
119
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);
200
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 1680 milliseconds