HomeSort by relevance Sort by last modified time
    Searched refs:StreamItemPhotoEntry (Results 1 - 3 of 3) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemPhotoEntry.java 28 public class StreamItemPhotoEntry implements Comparable<StreamItemPhotoEntry> {
37 public StreamItemPhotoEntry(long id, int sortIndex, long photoFileId, String photoUri,
48 public StreamItemPhotoEntry(Cursor cursor) {
89 public int compareTo(StreamItemPhotoEntry streamItemPhotoEntry) {
93 if (mSortIndex == streamItemPhotoEntry.mSortIndex) {
95 return mId == streamItemPhotoEntry.mId ? 0
96 : mId < streamItemPhotoEntry.mId ? -1 : 1;
104 if (streamItemPhotoEntry.mSortIndex == -1)
    [all...]
StreamItemEntry.java 59 private List<StreamItemPhotoEntry> mPhotos;
82 mPhotos = new ArrayList<StreamItemPhotoEntry>();
98 mPhotos = new ArrayList<StreamItemPhotoEntry>();
101 public void addPhoto(StreamItemPhotoEntry photoEntry) {
150 public List<StreamItemPhotoEntry> getPhotos() {
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 54 import com.android.contacts.util.StreamItemPhotoEntry;
73 public final StreamItemPhotoEntry streamItemPhoto;
75 public StreamPhotoTag(StreamItemEntry streamItem, StreamItemPhotoEntry streamItemPhoto) {
260 final List<StreamItemPhotoEntry> photos = streamItem.getPhotos();
326 final StreamItemEntry streamItem, final StreamItemPhotoEntry streamItemPhoto,

Completed in 54 milliseconds