Home
last modified time | relevance | path

Searched refs:PhotoData (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardEntryTests.java33 import com.android.vcard.VCardEntry.PhotoData;
267 PhotoData photoData = new PhotoData("PNG", photoBytes, false); in testEntryElementIterator()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardEntry.java986 public static class PhotoData implements EntryElement { class in VCardEntry
997 public PhotoData(String format, byte[] photoBytes, boolean isPrimary) { in PhotoData() method in VCardEntry.PhotoData
1027 if (!(obj instanceof PhotoData)) { in equals()
1030 PhotoData photoData = (PhotoData) obj; in equals()
1560 private List<PhotoData> mPhotoList;
1993 mPhotoList = new ArrayList<PhotoData>(1); in addPhotoBytes()
1995 final PhotoData photoData = new PhotoData(formatName, photoBytes, isPrimary); in addPhotoBytes()
2660 public final List<PhotoData> getPhotoList() { in getPhotoList()