OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mNotification
(Results
1 - 8
of
8
) sorted by null
/cts/tests/tests/app/src/android/app/cts/
NotificationTest.java
36
private Notification
mNotification
;
49
mNotification
= new Notification();
67
mNotification
= null;
68
mNotification
= new Notification();
69
assertNotNull(
mNotification
);
70
assertTrue(System.currentTimeMillis() -
mNotification
.when < TOLERANCE);
72
mNotification
= null;
74
mNotification
= new Notification(0, TICKER_TEXT, notificationTime);
75
assertEquals(notificationTime,
mNotification
.when);
76
assertEquals(0,
mNotification
.icon)
[
all
...]
/development/samples/Alarm/src/com/example/android/newalarm/
AlarmService.java
74
Notification
mNotification
;
132
// Gets a handle to the system
mNotification
service.
157
// Cancels the status bar
mNotification
based on its ID, which is set in showNotification().
184
// Sets the icon, status bar text, and display time for the
mNotification
.
185
mNotification
= new Notification(
199
// Creates a new content view for the
mNotification
. The view appears when the user
201
mNotification
.setLatestEventInfo(
212
R.string.alarm_service_started, // unique id for the
mNotification
213
mNotification
// the
mNotification
objec
[
all
...]
/development/samples/Alarm/tests/src/com/example/android/newalarm/
AlarmServiceTest.java
83
assertNotNull(mService.
mNotification
);
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java
153
Notification
mNotification
= null;
519
mNotification
.setLatestEventInfo(getApplicationContext(), "RandomMusicPlayer", text, pi);
520
mNotificationManager.notify(NOTIFICATION_ID,
mNotification
);
532
mNotification
= new Notification();
533
mNotification
.tickerText = text;
534
mNotification
.icon = R.drawable.ic_stat_playing;
535
mNotification
.flags |= Notification.FLAG_ONGOING_EVENT;
536
mNotification
.setLatestEventInfo(getApplicationContext(), "RandomMusicPlayer",
538
startForeground(NOTIFICATION_ID,
mNotification
);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java
50
private Notification
mNotification
;
60
mNotification
= notification;
186
if (
mNotification
!= null) {
187
event.setParcelableData(
mNotification
);
260
+ " notification=" +
mNotification
+ ")";
/frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pService.java
89
private Notification
mNotification
;
[
all
...]
/frameworks/base/services/java/com/android/server/
WifiService.java
190
private Notification
mNotification
;
[
all
...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java
134
private Notification
mNotification
;
[
all
...]
Completed in 214 milliseconds