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

/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoDataAdapter.java76 private static ImageFetch[] sImageFetchSeq;
78 private static class ImageFetch { class in class:PhotoDataAdapter
81 public ImageFetch(int offset, int bit) { method in class:PhotoDataAdapter.ImageFetch
89 sImageFetchSeq = new ImageFetch[1 + (IMAGE_CACHE_SIZE - 1) * 2 + 3];
90 sImageFetchSeq[k++] = new ImageFetch(0, BIT_SCREEN_NAIL);
93 sImageFetchSeq[k++] = new ImageFetch(i, BIT_SCREEN_NAIL);
94 sImageFetchSeq[k++] = new ImageFetch(-i, BIT_SCREEN_NAIL);
97 sImageFetchSeq[k++] = new ImageFetch(0, BIT_FULL_IMAGE);
98 sImageFetchSeq[k++] = new ImageFetch(1, BIT_FULL_IMAGE);
99 sImageFetchSeq[k++] = new ImageFetch(
[all...]

Completed in 78 milliseconds