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

/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DLocalPhotoSource.java60 private ArrayList<Long> mPhotos = new ArrayList<Long>(); field in class:LocalPhotoSource
88 if (index < mPhotos.size()) {
90 .appendPath(String.valueOf(mPhotos.get(index)))
98 if (index >= mPhotos.size()) return null;
99 long id = mPhotos.get(index);
136 if (mPhotos.size() < Math.min(totalCount, MAX_PHOTO_COUNT)) return false;
137 if (mPhotos.size() == 0) return true; // totalCount is also 0
140 for (Long imageId : mPhotos) {
151 return cursor.getInt(0) == mPhotos.size();
169 mPhotos
[all...]

Completed in 32 milliseconds