Searched defs:photoIcon (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
H A DContactsAsyncHelper.java56 * @param photoIcon Bitmap object obtained by the async load.
61 public void onImageLoadComplete(int token, Drawable photo, Bitmap photoIcon, argument
80 args.listener.onImageLoadComplete(msg.what, args.photo, args.photoIcon,
104 public Bitmap photoIcon; field in class:ContactsAsyncHelper.WorkerArgs
227 args.photoIcon = getPhotoIconWhenAppropriate(args.context, args.photo);
233 args.photoIcon = null;
H A DCallCard.java707 public void onImageLoadComplete(int token, Drawable photo, Bitmap photoIcon, Object cookie) { argument
728 callerInfo.cachedPhotoIcon = photoIcon;
735 } else if (photoIcon != null) {
736 showImage(imageView, photoIcon);
H A DNotificationMgr.java422 int token, Drawable photo, Bitmap photoIcon, Object cookie) {
425 notifyMissedCall(n.name, n.number, n.type, photo, photoIcon, n.date);
474 * @param photo picture which may be used for the notification (when photoIcon is null).
475 * This also can be null when the picture itself isn't available. If photoIcon is available
478 * @param photoIcon picture which should be used for the notification. Can be null. This is
484 String name, String number, String type, Drawable photo, Bitmap photoIcon, long date) {
499 + ", label: " + type + ", photo: " + photo + ", photoIcon: " + photoIcon
562 if (photoIcon != null) {
563 builder.setLargeIcon(photoIcon);
421 onImageLoadComplete( int token, Drawable photo, Bitmap photoIcon, Object cookie) argument
483 notifyMissedCall( String name, String number, String type, Drawable photo, Bitmap photoIcon, long date) argument
[all...]

Completed in 253 milliseconds