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

  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemEntry.java 30 * mPhotos. Social stream item entries are comparable; entries with more recent
50 private List<StreamItemPhotoEntry> mPhotos;
66 mPhotos = new ArrayList<StreamItemPhotoEntry>();
82 mPhotos = new ArrayList<StreamItemPhotoEntry>();
86 mPhotos.add(photoEntry);
135 Collections.sort(mPhotos);
136 return mPhotos;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 59 private ArrayList<Long> mPhotos = new ArrayList<Long>();
86 if (index < mPhotos.size()) {
88 .appendPath(String.valueOf(mPhotos.get(index)))
96 if (index >= mPhotos.size()) return null;
97 long id = mPhotos.get(index);
134 if (mPhotos.size() < Math.min(totalCount, MAX_PHOTO_COUNT)) return false;
135 if (mPhotos.size() == 0) return true; // totalCount is also 0
138 for (Long imageId : mPhotos) {
149 return cursor.getInt(0) == mPhotos.size();
166 mPhotos.clear()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List8.java 87 private ArrayList<Integer> mPhotos = new ArrayList<Integer>();
94 return mPhotos.size();
109 i.setImageResource(mPhotos.get(position));
121 mPhotos.clear();
128 mPhotos.add(newPhoto);

Completed in 938 milliseconds