HomeSort by relevance Sort by last modified time
    Searched refs:mNotification (Results 1 - 25 of 31) sorted by null

1 2

  /cts/tests/tests/app/src/android/app/cts/
NotificationTest.java 30 private Notification mNotification;
43 mNotification = new Notification();
47 mNotification = null;
48 mNotification = new Notification();
49 assertNotNull(mNotification);
50 assertTrue(System.currentTimeMillis() - mNotification.when < TOLERANCE);
52 mNotification = null;
54 mNotification = new Notification(0, TICKER_TEXT, notificationTime);
55 assertEquals(notificationTime, mNotification.when);
56 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...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNotificationController.java 68 private Notification mNotification;
232 if (mNotification == null) {
234 mNotification = new Notification();
235 mNotification.when = 0;
236 mNotification.icon = ICON_NETWORKS_AVAILABLE;
237 mNotification.flags = Notification.FLAG_AUTO_CANCEL;
238 mNotification.contentIntent = TaskStackBuilder.create(mContext)
248 mNotification.tickerText = title;
249 mNotification.color = mContext.getResources().getColor(
251 mNotification.setLatestEventInfo(mContext, title, details, mNotification.contentIntent)
    [all...]
  /development/samples/Alarm/tests/src/com/example/android/newalarm/
AlarmServiceTest.java 83 assertNotNull(mService.mNotification);
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 461 Notification result = b.mNotification;
526 Notification result = b.mNotification;
542 return NotificationCompatHoneycomb.add(b.mContext, b.mNotification,
551 return NotificationCompatIceCreamSandwich.add(b.mContext, b.mNotification,
562 b.mContext, b.mNotification, b.mContentTitle, b.mContentText, b.mContentInfo,
626 b.mContext, b.mNotification, b.mContentTitle, b.mContentText, b.mContentInfo,
677 b.mContext, b.mNotification, b.mContentTitle, b.mContentText, b.mContentInfo,
731 b.mContext, b.mNotification, b.mContentTitle, b.mContentText, b.mContentInfo,
    [all...]
  /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;
76 mNotification = notification;
215 if (mNotification != null) {
216 event.setParcelableData(mNotification);
289 + " notification=" + mNotification + ")";
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 150 private Notification mNotification;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java 125 Notification mNotification;
133 mNotification = n;
143 mNotification = n;
169 mNm.notify(id, nw.mNotification);
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 309 expected.mPriority, actual.mNotification.priority);
351 s.append("priority:" + actual.mNotification.priority);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pServiceImpl.java 110 private Notification mNotification;
    [all...]
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 
  /development/samples/training/InteractiveChart/libs/
android-support-v4.jar 
  /external/robolectric/lib/main/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar 
  /sdk/apps/NotificationStudio/libs/
android-support-v4.jar 
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 

Completed in 1785 milliseconds

1 2