Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DPoolableImageCache.java233 LinkedList<ImageResource> imageList = mImageListSparseArray.get(poolKey); in addResourceToPool() local
234 if (imageList == null) { in addResourceToPool()
235 imageList = new LinkedList<ImageResource>(); in addResourceToPool()
236 mImageListSparseArray.put(poolKey, imageList); in addResourceToPool()
238 imageList.addLast(imageResource); in addResourceToPool()
246 final LinkedList<ImageResource> imageList = mImageListSparseArray.get(poolKey); in removeResourceFromPool() local
247 if (imageList != null) { in removeResourceFromPool()
248 imageList.remove(imageResource); in removeResourceFromPool()
/packages/apps/PermissionController/src/com/android/permissioncontroller/incident/
DConfirmationActivity.java176 final LinearLayout imageList = (LinearLayout) content.findViewById(R.id.imageList); in onCreate() local
187 imageList.addView(imageView, new LinearLayout.LayoutParams(width, height)); in onCreate()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLocalSource.java193 ArrayList<PathId> imageList = new ArrayList<PathId>(); in mapMediaItems() local
202 imageList.add(pid); in mapMediaItems()
208 processMapMediaItems(imageList, consumer, true); in mapMediaItems()
/packages/apps/Gallery/src/com/android/camera/
DImageGetter.java268 IImageList imageList, GetterHandler handler) {
275 mImageList = imageList;
DGridViewSpecial.java745 IImageList imageList, ImageLoader loader, in ImageBlockManager() argument
751 mImageList = imageList; in ImageBlockManager()
759 mCount = imageList.getCount(); in ImageBlockManager()