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

/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/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java116 public static NotificationCompatBase.Action getAction(Notification notif, argument
119 return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory);
184 public static boolean getLocalOnly(Notification notif) { argument
185 return (notif.flags & Notification.FLAG_LOCAL_ONLY) != 0;
188 public static String getGroup(Notification notif) { argument
189 return notif.getGroup();
192 public static boolean isGroupSummary(Notification notif) { argument
193 return (notif.flags & Notification.FLAG_GROUP_SUMMARY) != 0;
196 public static String getSortKey(Notification notif) { argument
197 return notif
[all...]
/frameworks/support/v4/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java119 public static Bundle getExtras(Notification notif) { argument
120 return notif.extras;
123 public static int getActionCount(Notification notif) { argument
124 return notif.actions != null ? notif.actions.length : 0;
127 public static NotificationCompatBase.Action getAction(Notification notif, argument
130 Notification.Action action = notif.actions[actionIndex];
132 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray(
141 public static boolean getLocalOnly(Notification notif) { argument
142 return notif
145 getGroup(Notification notif) argument
149 isGroupSummary(Notification notif) argument
153 getSortKey(Notification notif) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/app/
H A DNotificationCompatApi21.java124 public static String getCategory(Notification notif) { argument
125 return notif.category;
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationManagerCompat.java565 final Notification notif; field in class:NotificationManagerCompat.NotifyTask
567 public NotifyTask(String packageName, int id, String tag, Notification notif) { argument
571 this.notif = notif;
576 service.notify(packageName, id, tag, notif);
H A DNotificationCompat.java774 public String getCategory(Notification notif) { argument
775 return NotificationCompatApi21.getCategory(notif);
1619 * Notification notif = new Notification.Builder(mContext)
1688 * Notification notif = new Notification.Builder(mContext)
2222 * Notification notif = new NotificationCompat.Builder(mContext)
2229 * NotificationManagerCompat.from(mContext).notify(0, notif);</pre>
2358 public WearableExtender(Notification notif) { argument
2359 Bundle extras = getExtras(notif);
2523 * Notification notif = new NotificationCompat.Builder(context)
2961 * @param notif Th
2963 CarExtender(Notification notif) argument
3289 getExtras(Notification notif) argument
3297 getActionCount(Notification notif) argument
3307 getAction(Notification notif, int actionIndex) argument
3316 getCategory(Notification notif) argument
3326 getLocalOnly(Notification notif) argument
3334 getGroup(Notification notif) argument
3344 isGroupSummary(Notification notif) argument
3360 getSortKey(Notification notif) argument
[all...]
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java255 public void handleNiNotification(GpsNiNotification notif) { argument
257 + " notificationId: " + notif.notificationId
258 + " requestorId: " + notif.requestorId
259 + " text: " + notif.text
264 handleNiInEs(notif);
266 handleNi(notif);
283 private void handleNi(GpsNiNotification notif) { argument
285 + " needNotify: " + notif.needNotify
286 + " needVerify: " + notif.needVerify
287 + " privacyOverride: " + notif
324 handleNiInEs(GpsNiNotification notif) argument
355 setNiNotification(GpsNiNotification notif) argument
399 openNiDialog(GpsNiNotification notif) argument
412 getDlgIntent(GpsNiNotification notif) argument
567 getNotifTicker(GpsNiNotification notif, Context context) argument
576 getNotifTitle(GpsNiNotification notif, Context context) argument
583 getNotifMessage(GpsNiNotification notif, Context context) argument
592 getDialogTitle(GpsNiNotification notif, Context context) argument
598 getDialogMessage(GpsNiNotification notif, Context context) argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java133 Notification notif = b.build();
136 Bundle extras = getExtras(notif);
147 getExtras(notif).putSparseParcelableArray(EXTRA_ACTION_EXTRAS, actionExtrasMap);
149 return notif;
211 public static Bundle getExtras(Notification notif) { argument
227 Bundle extras = (Bundle) sExtrasField.get(notif);
230 sExtrasField.set(notif, extras);
267 public static int getActionCount(Notification notif) { argument
269 Object[] actionObjects = getActionObjectsLocked(notif);
274 public static NotificationCompatBase.Action getAction(Notification notif, in argument
302 getActionObjectsLocked(Notification notif) argument
391 getLocalOnly(Notification notif) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java3901 * Notification notif = new Notification.Builder(mContext)
4053 * Notification notif = new Notification.Builder(mContext)
4181 * Notification notif = new Notification.Builder(mContext)
4585 * Notification notif = new Notification.Builder(mContext)
4594 * notificationManger.notify(0, notif);</pre>
4723 public WearableExtender(Notification notif) { argument
4724 Bundle wearableBundle = notif.extras.getBundle(EXTRA_WEARABLE_EXTENSIONS);
4883 * Notification notif = new Notification.Builder(context)
5318 * @param notif The notification from which to copy options.
5320 public CarExtender(Notification notif) { argument
[all...]

Completed in 292 milliseconds