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

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

Completed in 41 milliseconds