HomeSort by relevance Sort by last modified time
    Searched refs:StreamItemPhotoEntry (Results 1 - 4 of 4) 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 50 private List<StreamItemPhotoEntry> mPhotos;
66 mPhotos = new ArrayList<StreamItemPhotoEntry>();
82 mPhotos = new ArrayList<StreamItemPhotoEntry>();
85 public void addPhoto(StreamItemPhotoEntry photoEntry) {
134 public List<StreamItemPhotoEntry> getPhotos() {
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 27 import com.android.contacts.util.StreamItemPhotoEntry;
80 public final StreamItemPhotoEntry streamItemPhoto;
82 public StreamPhotoTag(StreamItemEntry streamItem, StreamItemPhotoEntry streamItemPhoto) {
242 StreamItemPhotoEntry firstPhoto = firstEntry.getPhotos().get(0);
268 List<StreamItemPhotoEntry> photos = streamItem.getPhotos();
280 final StreamItemPhotoEntry firstPhoto = photos.get(index);
283 final StreamItemPhotoEntry secondPhoto = photos.get(index + 1);
324 final StreamItemEntry streamItem, final StreamItemPhotoEntry streamItemPhoto,
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 25 import com.android.contacts.util.StreamItemPhotoEntry;
    [all...]

Completed in 235 milliseconds