Home
last modified time | relevance | path

Searched refs:howMany (Results 1 – 5 of 5) sorted by relevance

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DLocalSource.java178 protected Collection<ImageData> findImages(int howMany) { in findImages() argument
182 findImages(internalFirst, howMany, foundImages); in findImages()
183 findImages(!internalFirst, howMany - foundImages.size(), foundImages); in findImages()
188 protected void findImages(boolean internal, int howMany, LinkedList<ImageData> foundImages ) { in findImages() argument
212 if (cursor.getCount() > howMany && mLastPosition == INVALID) { in findImages()
213 mLastPosition = pickRandomStart(cursor.getCount(), howMany); in findImages()
220 while (foundImages.size() < howMany && cursor.moveToNext()) { in findImages()
DPhotoSourcePlexor.java56 protected Collection<ImageData> findImages(int howMany) { in findImages() argument
60 foundImages.addAll(mPicasaSource.findImages(howMany)); in findImages()
63 foundImages.addAll(mLocalSource.findImages(howMany)); in findImages()
DPicasaSource.java163 protected Collection<ImageData> findImages(int howMany) { in findImages() argument
167 howMany = Math.min(howMany, mMaxRecycleSize); in findImages()
168 log(TAG, "METERED: " + howMany); in findImages()
221 if (cursor.getCount() > howMany && mLastPosition == INVALID) { in findImages()
222 mLastPosition = pickRandomStart(cursor.getCount(), howMany); in findImages()
DStockSource.java75 protected Collection<ImageData> findImages(int howMany) { in findImages() argument
DPhotoSource.java326 protected abstract Collection<ImageData> findImages(int howMany); in findImages() argument