Searched defs:notif (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompatJellybean.java86 public static Bundle getExtras(Notification notif) { argument
102 Bundle extras = (Bundle) sExtrasField.get(notif);
105 sExtrasField.set(notif, extras);
152 public static int getActionCount(Notification notif) { argument
154 Object[] actionObjects = getActionObjectsLocked(notif);
159 public static NotificationCompat.Action getAction(Notification notif, int actionIndex) { argument
162 Object[] actionObjects = getActionObjectsLocked(notif);
166 Bundle extras = getExtras(notif);
187 private static Object[] getActionObjectsLocked(Notification notif) { argument
193 return (Object[]) sActionsField.get(notif);
[all...]
H A DNotificationManagerCompat.java588 final Notification notif; field in class:NotificationManagerCompat.NotifyTask
590 NotifyTask(String packageName, int id, String tag, Notification notif) { argument
594 this.notif = notif;
599 service.notify(packageName, id, tag, notif);
/frameworks/support/recommendation/src/android/support/app/recommendation/
H A DRecommendationExtender.java81 * @param notif The notification from which to copy options.
83 public RecommendationExtender(Notification notif) { argument
84 Bundle contentBundle = notif.extras == null ?
85 null : notif.extras.getBundle(EXTRA_CONTENT_INFO_EXTENDER);
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java252 public void handleNiNotification(GpsNiNotification notif) { argument
254 + " notificationId: " + notif.notificationId
255 + " requestorId: " + notif.requestorId
256 + " text: " + notif.text
261 handleNiInEs(notif);
263 handleNi(notif);
280 private void handleNi(GpsNiNotification notif) { argument
282 + " needNotify: " + notif.needNotify
283 + " needVerify: " + notif.needVerify
284 + " privacyOverride: " + notif
321 handleNiInEs(GpsNiNotification notif) argument
352 setNiNotification(GpsNiNotification notif) argument
397 openNiDialog(GpsNiNotification notif) argument
410 getDlgIntent(GpsNiNotification notif) argument
565 getNotifTicker(GpsNiNotification notif, Context context) argument
574 getNotifTitle(GpsNiNotification notif, Context context) argument
581 getNotifMessage(GpsNiNotification notif, Context context) argument
590 getDialogTitle(GpsNiNotification notif, Context context) argument
596 getDialogMessage(GpsNiNotification notif, Context context) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java5525 * Notification notif = new Notification.Builder(mContext)
5717 * Notification notif = new Notification.Builder(mContext)
6435 * Notification notif = new Notification.Builder(mContext)
7083 * Notification notif = new Notification.Builder(mContext)
7092 * notificationManger.notify(0, notif);</pre>
7227 public WearableExtender(Notification notif) { argument
7228 Bundle wearableBundle = notif.extras.getBundle(EXTRA_WEARABLE_EXTENSIONS);
7397 * Notification notif = new Notification.Builder(context)
7921 * @param notif The notification from which to copy options.
7923 public CarExtender(Notification notif) { argument
8329 TvExtender(Notification notif) argument
[all...]

Completed in 212 milliseconds