OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:findImages
(Results
1 - 5
of
5
) sorted by null
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java
56
protected Collection<ImageData>
findImages
(int howMany) {
60
foundImages.addAll(mPicasaSource.
findImages
(howMany));
63
foundImages.addAll(mLocalSource.
findImages
(howMany));
LocalSource.java
178
protected Collection<ImageData>
findImages
(int howMany) {
182
findImages
(internalFirst, howMany, foundImages);
183
findImages
(!internalFirst, howMany - foundImages.size(), foundImages);
188
protected void
findImages
(boolean internal, int howMany, LinkedList<ImageData> foundImages ) {
StockSource.java
75
protected Collection<ImageData>
findImages
(int howMany) {
PhotoSource.java
124
mImageQueue.addAll(
findImages
(mMaxQueueSize - mImageQueue.size()));
152
image = load((ImageData) mFallbackSource.
findImages
(1).toArray()[0],
326
protected abstract Collection<ImageData>
findImages
(int howMany);
PicasaSource.java
163
protected Collection<ImageData>
findImages
(int howMany) {
250
Log.w(TAG, "received a null cursor in
findImages
()");
Completed in 268 milliseconds