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

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompatJellybean.java89 public static Bundle getExtras(Notification notif) { argument
105 Bundle extras = (Bundle) sExtrasField.get(notif);
108 sExtrasField.set(notif, extras);
156 public static int getActionCount(Notification notif) { argument
158 Object[] actionObjects = getActionObjectsLocked(notif);
163 public static NotificationCompat.Action getAction(Notification notif, int actionIndex) { argument
166 Object[] actionObjects = getActionObjectsLocked(notif);
170 Bundle extras = getExtras(notif);
191 private static Object[] getActionObjectsLocked(Notification notif) { argument
197 return (Object[]) sActionsField.get(notif);
[all...]
H A DNotificationManagerCompat.java594 final Notification notif; field in class:NotificationManagerCompat.NotifyTask
596 NotifyTask(String packageName, int id, String tag, Notification notif) { argument
600 this.notif = notif;
605 service.notify(packageName, id, tag, notif);
/frameworks/support/recommendation/src/main/java/androidx/recommendation/app/
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.java6202 * Notification notif = new Notification.Builder(mContext)
6429 * Notification notif = new Notification.Builder(mContext)
7451 * Notification notif = new Notification.Builder(mContext)
8201 * Notification notif = new Notification.Builder(mContext)
8210 * notificationManger.notify(0, notif);</pre>
8345 public WearableExtender(Notification notif) { argument
8346 Bundle wearableBundle = notif.extras.getBundle(EXTRA_WEARABLE_EXTENSIONS);
8515 * Notification notif = new Notification.Builder(context)
9057 * @param notif The notification from which to copy options.
9059 public CarExtender(Notification notif) { argument
9467 TvExtender(Notification notif) argument
[all...]

Completed in 454 milliseconds