[go: nahoru, domu]

Searched refs:Photo (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java213 Photo photo = Photo.matchURL(url, text);
953 public static class Photo extends Token { class in class:AbstractMessageParser
964 public Photo(String user, String album, String photo, String text) { method in class:AbstractMessageParser.Photo
978 /** Returns a Photo object if the given url is to a photo or album. */
979 public static Photo matchURL(String url, String text) {
982 return new Photo(m.group(1), m.group(2), m.group(3), text);
1296 html.append(Photo.getAlbumURL(
1297 ((Photo)token).getUser(), ((Photo)toke
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DDefaultPhotoManager.java49 ContactsContract.CommonDataKinds.Photo.PHOTO
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java34 import android.provider.ContactsContract.CommonDataKinds.Photo;
611 builder.appendPhotos(contentValuesListMap.get(Photo.CONTENT_ITEM_TYPE));
H A DVCardEntry.java34 import android.provider.ContactsContract.CommonDataKinds.Photo;
996 builder.withValueBackReference(Photo.RAW_CONTACT_ID, backReferenceIndex);
997 builder.withValue(Data.MIMETYPE, Photo.CONTENT_ITEM_TYPE);
998 builder.withValue(Photo.PHOTO, mBytes);
1000 builder.withValue(Photo.IS_PRIMARY, 1);
H A DVCardBuilder.java26 import android.provider.ContactsContract.CommonDataKinds.Photo;
61 * .appendPhotos(contentValuesListMap.get(Photo.CONTENT_ITEM_TYPE))
1305 byte[] data = contentValues.getAsByteArray(Photo.PHOTO);
/frameworks/base/core/java/android/provider/
H A DContactsContract.java914 * Photo file ID of the full-size photo. If present, this will be used to populate
1331 * {@link CommonDataKinds.Photo#CONTENT_ITEM_TYPE}. The value of this field
1333 * {@link CommonDataKinds.Photo#IS_SUPER_PRIMARY} field of the data rows of
1996 * Uri photoUri = Uri.withAppendedPath(contactUri, Contacts.Photo.CONTENT_DIRECTORY);
1998 * new String[] {Contacts.Photo.PHOTO}, null, null, null);
2021 * Uri displayPhotoUri = Uri.withAppendedPath(contactUri, Contacts.Photo.DISPLAY_PHOTO);
2044 public static final class Photo implements BaseColumns, DataColumnsWithJoins { class in class:ContactsContract.Contacts
2048 private Photo() {} method in class:ContactsContract.Contacts.Photo
2091 Contacts.Photo.DISPLAY_PHOTO);
2102 Uri photoUri = Uri.withAppendedPath(contactUri, Photo
7119 public static final class Photo implements DataColumnsWithJoins, ContactCounts { class in class:ContactsContract.CommonDataKinds
7123 private Photo() {} method in class:ContactsContract.CommonDataKinds.Photo
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardExporterTests.java33 import android.provider.ContactsContract.CommonDataKinds.Photo;
1131 entry.addContentValues(Photo.CONTENT_ITEM_TYPE)
1132 .put(Photo.PHOTO, sPhotoByteArray);
H A DVCardImporterTests.java26 import android.provider.ContactsContract.CommonDataKinds.Photo;
674 elem.addExpected(Photo.CONTENT_ITEM_TYPE)
676 .put(Photo.PHOTO, sPhotoByteArrayForComplicatedCase);

Completed in 205 milliseconds