Home
last modified time | relevance | path

Searched refs:notif (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/location/java/com/android/internal/location/
DGpsNetInitiatedHandler.java255 public void handleNiNotification(GpsNiNotification notif) { in handleNiNotification() argument
257 + " notificationId: " + notif.notificationId in handleNiNotification()
258 + " requestorId: " + notif.requestorId in handleNiNotification()
259 + " text: " + notif.text in handleNiNotification()
264 handleNiInEs(notif); in handleNiNotification()
266 handleNi(notif); in handleNiNotification()
283 private void handleNi(GpsNiNotification notif) { in handleNi() argument
285 + " needNotify: " + notif.needNotify in handleNi()
286 + " needVerify: " + notif.needVerify in handleNi()
287 + " privacyOverride: " + notif.privacyOverride in handleNi()
[all …]
/frameworks/support/v4/kitkat/android/support/v4/app/
DNotificationCompatKitKat.java130 public static Bundle getExtras(Notification notif) { in getExtras() argument
131 return notif.extras; in getExtras()
134 public static int getActionCount(Notification notif) { in getActionCount() argument
135 return notif.actions != null ? notif.actions.length : 0; in getActionCount()
138 public static NotificationCompatBase.Action getAction(Notification notif, in getAction() argument
141 Notification.Action action = notif.actions[actionIndex]; in getAction()
143 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray( in getAction()
152 public static boolean getLocalOnly(Notification notif) { in getLocalOnly() argument
153 return notif.extras.getBoolean(NotificationCompatJellybean.EXTRA_LOCAL_ONLY); in getLocalOnly()
156 public static String getGroup(Notification notif) { in getGroup() argument
[all …]
/frameworks/support/tests/java/android/support/v4/app/
DNotificationCompatWearableExtenderTest.java57 Notification notif = new NotificationCompat.Builder(getContext()) in testRealReadCompatEmptyValue() local
61 assertExtendersEqual(new Notification.WearableExtender(notif), compatExtender); in testRealReadCompatEmptyValue()
62 assertExtendersEqual(new Notification.WearableExtender(notif), in testRealReadCompatEmptyValue()
63 new NotificationCompat.WearableExtender(notif)); in testRealReadCompatEmptyValue()
69 Notification notif = new Notification.Builder(getContext()) in testCompatReadRealEmptyValue() local
73 assertExtendersEqual(realExtender, new NotificationCompat.WearableExtender(notif)); in testCompatReadRealEmptyValue()
74 assertExtendersEqual(new Notification.WearableExtender(notif), in testCompatReadRealEmptyValue()
75 new NotificationCompat.WearableExtender(notif)); in testCompatReadRealEmptyValue()
118 Notification notif = new NotificationCompat.Builder(getContext()) in testRealReadCompatValue() local
120 assertExtendersEqual(new Notification.WearableExtender(notif), compatExtender); in testRealReadCompatValue()
[all …]
/frameworks/support/v4/jellybean/android/support/v4/app/
DNotificationCompatJellybean.java140 Notification notif = b.build(); in build() local
143 Bundle extras = getExtras(notif); in build()
154 getExtras(notif).putSparseParcelableArray(EXTRA_ACTION_EXTRAS, actionExtrasMap); in build()
157 notif.contentView = mContentView; in build()
160 notif.bigContentView = mBigContentView; in build()
162 return notif; in build()
224 public static Bundle getExtras(Notification notif) { in getExtras() argument
240 Bundle extras = (Bundle) sExtrasField.get(notif); in getExtras()
243 sExtrasField.set(notif, extras); in getExtras()
285 public static int getActionCount(Notification notif) { in getActionCount() argument
[all …]
/frameworks/support/v4/api20/android/support/v4/app/
DNotificationCompatApi20.java133 public static NotificationCompatBase.Action getAction(Notification notif, in getAction() argument
136 … return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory); in getAction()
203 public static boolean getLocalOnly(Notification notif) { in getLocalOnly() argument
204 return (notif.flags & Notification.FLAG_LOCAL_ONLY) != 0; in getLocalOnly()
207 public static String getGroup(Notification notif) { in getGroup() argument
208 return notif.getGroup(); in getGroup()
211 public static boolean isGroupSummary(Notification notif) { in isGroupSummary() argument
212 return (notif.flags & Notification.FLAG_GROUP_SUMMARY) != 0; in isGroupSummary()
215 public static String getSortKey(Notification notif) { in getSortKey() argument
216 return notif.getSortKey(); in getSortKey()
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java278 final Notification notif; in onPublicVolumeStateChangedInternal() local
281 notif = onVolumeUnmounted(vol); in onPublicVolumeStateChangedInternal()
284 notif = onVolumeChecking(vol); in onPublicVolumeStateChangedInternal()
288 notif = onVolumeMounted(vol); in onPublicVolumeStateChangedInternal()
291 notif = onVolumeFormatting(vol); in onPublicVolumeStateChangedInternal()
294 notif = onVolumeEjecting(vol); in onPublicVolumeStateChangedInternal()
297 notif = onVolumeUnmountable(vol); in onPublicVolumeStateChangedInternal()
300 notif = onVolumeRemoved(vol); in onPublicVolumeStateChangedInternal()
303 notif = onVolumeBadRemoval(vol); in onPublicVolumeStateChangedInternal()
306 notif = null; in onPublicVolumeStateChangedInternal()
[all …]
/frameworks/support/recommendation/src/android/support/app/recommendation/
DRecommendationExtender.java83 public RecommendationExtender(Notification notif) { in RecommendationExtender() argument
84 Bundle contentBundle = notif.extras == null ? in RecommendationExtender()
85 null : notif.extras.getBundle(EXTRA_CONTENT_INFO_EXTENDER); in RecommendationExtender()
DContentRecommendation.java1137 Notification notif = builder.build(); in getNotificationObject() local
1138 return notif; in getNotificationObject()
/frameworks/support/v4/java/android/support/v4/app/
DNotificationCompat.java844 public String getCategory(Notification notif) { in getCategory() argument
845 return NotificationCompatApi21.getCategory(notif); in getCategory()
2060 public static MessagingStyle extractMessagingStyleFromNotification(Notification notif) { in extractMessagingStyleFromNotification() argument
2062 Bundle extras = IMPL.getExtras(notif); in extractMessagingStyleFromNotification()
2944 public WearableExtender(Notification notif) { in WearableExtender() argument
2945 Bundle extras = getExtras(notif); in WearableExtender()
3623 public CarExtender(Notification notif) { in CarExtender() argument
3628 Bundle carBundle = getExtras(notif)==null ? in CarExtender()
3629 null : getExtras(notif).getBundle(EXTRA_CAR_EXTENDER); in CarExtender()
3949 public static Bundle getExtras(Notification notif) { in getExtras() argument
[all …]
DNotificationManagerCompat.java663 final Notification notif; field in NotificationManagerCompat.NotifyTask
665 public NotifyTask(String packageName, int id, String tag, Notification notif) { in NotifyTask() argument
669 this.notif = notif; in NotifyTask()
674 service.notify(packageName, id, tag, notif); in send()
/frameworks/support/v4/api21/android/support/v4/app/
DNotificationCompatApi21.java146 public static String getCategory(Notification notif) { in getCategory() argument
147 return notif.category; in getCategory()
/frameworks/base/docs/html/training/wearables/notifications/
Dstacks.jd47 Notification notif = new NotificationCompat.Builder(mContext)
57 notificationManager.notify(notificationId1, notif);
Dcreating.jd255 Notification notif = new NotificationCompat.Builder(mContext)
284 new NotificationCompat.WearableExtender(notif);
300 notificationManager.notify(notificationId, notif);
/frameworks/base/core/java/android/app/
DNotification.java5698 public WearableExtender(Notification notif) { in WearableExtender() argument
5699 Bundle wearableBundle = notif.extras.getBundle(EXTRA_WEARABLE_EXTENSIONS); in WearableExtender()
6369 public CarExtender(Notification notif) { in CarExtender() argument
6370 Bundle carBundle = notif.extras == null ? in CarExtender()
6371 null : notif.extras.getBundle(EXTRA_CAR_EXTENDER); in CarExtender()
/frameworks/base/docs/html/about/versions/
Djelly-bean.jd1326 <!-- <img src="{@docRoot}images/jd-notif-cd.png" style="width:200px"> -->
1327 <img src="{@docRoot}images/jb-notif-ex1.png" width="280" height="548">