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

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

Completed in 52 milliseconds