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

/frameworks/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java115 public static NotificationCompatBase.Action getAction(Notification notif, argument
118 return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory);
183 public static boolean getLocalOnly(Notification notif) { argument
184 return (notif.flags & Notification.FLAG_LOCAL_ONLY) != 0;
187 public static String getGroup(Notification notif) { argument
188 return notif.getGroup();
191 public static boolean isGroupSummary(Notification notif) { argument
192 return (notif.flags & Notification.FLAG_GROUP_SUMMARY) != 0;
195 public static String getSortKey(Notification notif) { argument
196 return notif
[all...]
/frameworks/support/v4/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java118 public static Bundle getExtras(Notification notif) { argument
119 return notif.extras;
122 public static int getActionCount(Notification notif) { argument
123 return notif.actions != null ? notif.actions.length : 0;
126 public static NotificationCompatBase.Action getAction(Notification notif, argument
129 Notification.Action action = notif.actions[actionIndex];
131 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray(
140 public static boolean getLocalOnly(Notification notif) { argument
141 return notif
144 getGroup(Notification notif) argument
148 isGroupSummary(Notification notif) argument
152 getSortKey(Notification notif) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/app/
H A DNotificationCompatApi21.java123 public static String getCategory(Notification notif) { argument
124 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.java759 public String getCategory(Notification notif) { argument
760 return NotificationCompatApi21.getCategory(notif);
1583 * Notification notif = new Notification.Builder(mContext)
1652 * Notification notif = new Notification.Builder(mContext)
2186 * Notification notif = new NotificationCompat.Builder(mContext)
2193 * NotificationManagerCompat.from(mContext).notify(0, notif);</pre>
2322 public WearableExtender(Notification notif) { argument
2323 Bundle extras = getExtras(notif);
2487 * Notification notif = new NotificationCompat.Builder(context)
2925 * @param notif Th
2927 CarExtender(Notification notif) argument
3252 getExtras(Notification notif) argument
3260 getActionCount(Notification notif) argument
3270 getAction(Notification notif, int actionIndex) argument
3279 getCategory(Notification notif) argument
3289 getLocalOnly(Notification notif) argument
3297 getGroup(Notification notif) argument
3307 isGroupSummary(Notification notif) argument
3323 getSortKey(Notification notif) argument
[all...]
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java256 public void handleNiNotification(GpsNiNotification notif) { argument
258 + " notificationId: " + notif.notificationId
259 + " requestorId: " + notif.requestorId
260 + " text: " + notif.text
265 handleNiInEs(notif);
267 handleNi(notif);
284 private void handleNi(GpsNiNotification notif) { argument
286 + " needNotify: " + notif.needNotify
287 + " needVerify: " + notif.needVerify
288 + " privacyOverride: " + notif
325 handleNiInEs(GpsNiNotification notif) argument
356 setNiNotification(GpsNiNotification notif) argument
398 openNiDialog(GpsNiNotification notif) argument
411 getDlgIntent(GpsNiNotification notif) argument
566 getNotifTicker(GpsNiNotification notif, Context context) argument
575 getNotifTitle(GpsNiNotification notif, Context context) argument
582 getNotifMessage(GpsNiNotification notif, Context context) argument
591 getDialogTitle(GpsNiNotification notif, Context context) argument
597 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.java3721 * Notification notif = new Notification.Builder(mContext)
3848 * Notification notif = new Notification.Builder(mContext)
3976 * Notification notif = new Notification.Builder(mContext)
4380 * Notification notif = new Notification.Builder(mContext)
4389 * notificationManger.notify(0, notif);</pre>
4518 public WearableExtender(Notification notif) { argument
4519 Bundle wearableBundle = notif.extras.getBundle(EXTRA_WEARABLE_EXTENSIONS);
4678 * Notification notif = new Notification.Builder(context)

Completed in 147 milliseconds