Searched refs:photo (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java212 // Look for photo links.
213 Photo photo = Photo.matchURL(url, text);
214 if (photo != null) {
215 return photo;
218 // Look for photo links.
952 /** Represents a link to a Picasa photo or album. */
954 /** Pattern for an album or photo URL. */
958 "http://picasaweb.google.com/([^/?#&]+)/+((?!searchbrowse)[^/?#&]+)(?:/|/photo)?(?:\\?[^#]*)?(?:#(.*))?");
962 private String photo; // null for albums field in class:AbstractMessageParser.Photo
964 public Photo(String user, String album, String photo, Strin argument
1012 getPhotoURL(String user, String album, String photo) argument
1031 private String photo; // null for user album field in class:AbstractMessageParser.FlickrPhoto
1035 FlickrPhoto(String user, String photo, String grouping, String groupingId, String text) argument
1122 getPhotoURL(String user, String photo) argument
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java479 // There may not be a photo yet if anything but the first contact address
488 Bitmap photo;
490 photo = BitmapFactory.decodeByteArray(photoBytes, 0, photoBytes.length);
492 // TODO: can the scaled down default photo be cached?
493 photo = mDefaultContactPhoto;
495 // Draw the photo on the left side.
496 if (photo != null) {
497 RectF src = new RectF(0, 0, photo.getWidth(), photo.getHeight());
506 canvas.drawBitmap(photo, matri
[all...]
H A DBaseRecipientAdapter.java249 // Note: At this point each entry doesn't contain any photo
651 * fetch a cached photo for each contact entry (other than separators), or request another
708 Log.d(TAG, "No photo cache for " + entry.getDisplayName()
798 Log.w(TAG, "Failed to quit photo handler thread, ignoring it.");
878 final Bitmap photo = BitmapFactory.decodeByteArray(
880 imageView.setImageBitmap(photo);
900 * (for photo). Ids for those should be available via {@link #getDisplayNameId()},
912 * photo is available.
942 * Returns an id for ImageView in an item View for showing photo image for a person. In default

Completed in 338 milliseconds