OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GalleryBitmapPool
(Results
1 - 13
of
13
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapLoader.java
21
import com.android.photos.data.
GalleryBitmapPool
;
55
GalleryBitmapPool
.getInstance().put(mBitmap);
88
GalleryBitmapPool
.getInstance().put(mBitmap);
BitmapTileProvider.java
24
import com.android.photos.data.
GalleryBitmapPool
;
78
Bitmap result =
GalleryBitmapPool
.getInstance().get(tileSize, tileSize);
TileImageViewAdapter.java
29
import com.android.photos.data.
GalleryBitmapPool
;
109
Bitmap bitmap =
GalleryBitmapPool
.getInstance().get(tileSize, tileSize);
129
GalleryBitmapPool
.getInstance().put(options.inBitmap);
TiledScreenNail.java
23
import com.android.photos.data.
GalleryBitmapPool
;
103
if (mBitmap != null)
GalleryBitmapPool
.getInstance().put(mBitmap);
141
GalleryBitmapPool
.getInstance().put(mBitmap);
AlbumLabelMaker.java
31
import com.android.photos.data.
GalleryBitmapPool
;
156
bitmap =
GalleryBitmapPool
.getInstance().get(mBitmapWidth, mBitmapHeight);
204
GalleryBitmapPool
.getInstance().put(label);
TileImageView.java
32
import com.android.photos.data.
GalleryBitmapPool
;
502
GalleryBitmapPool
.getInstance().put(tile.mDecodedTile);
530
GalleryBitmapPool
.getInstance().put(tile.mDecodedTile);
669
GalleryBitmapPool
.getInstance().put(bitmap);
/packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java
30
public class
GalleryBitmapPool
{
38
// SparseArrayBitmapPool instances to back the
GalleryBitmapPool
, which affords
57
private
GalleryBitmapPool
(int capacityBytes) {
65
private static
GalleryBitmapPool
sInstance = new
GalleryBitmapPool
(CAPACITY_BYTES);
67
public static
GalleryBitmapPool
getInstance() {
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpBitmapFetch.java
29
import com.android.photos.data.
GalleryBitmapPool
;
40
GalleryBitmapPool
.getInstance().put(b);
55
o.inBitmap =
GalleryBitmapPool
.getInstance().get(o.outWidth, o.outHeight);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DecodeUtils.java
31
import com.android.photos.data.
GalleryBitmapPool
;
260
GalleryBitmapPool
.getInstance().put(options.inBitmap);
268
GalleryBitmapPool
.getInstance().put(options.inBitmap);
287
GalleryBitmapPool
.getInstance().put(options.inBitmap);
295
GalleryBitmapPool
.getInstance().put(options.inBitmap);
304
return
GalleryBitmapPool
.getInstance().get(options.outWidth, options.outHeight);
310
return
GalleryBitmapPool
.getInstance().get(options.outWidth, options.outHeight);
/packages/apps/Gallery2/src/com/android/photos/shims/
BitmapJobDrawable.java
33
import com.android.photos.data.
GalleryBitmapPool
;
56
GalleryBitmapPool
.getInstance().put(mBitmap);
/packages/apps/Gallery2/src/com/android/photos/drawables/
AutoThumbnailDrawable.java
30
import com.android.photos.data.
GalleryBitmapPool
;
41
private static
GalleryBitmapPool
sBitmapPool =
GalleryBitmapPool
.getInstance();
/packages/apps/Gallery2/src/com/android/gallery3d/app/
AbstractGalleryActivity.java
50
import com.android.photos.data.
GalleryBitmapPool
;
229
GalleryBitmapPool
.getInstance().clear();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java
122
import com.android.photos.data.
GalleryBitmapPool
;
[
all
...]
Completed in 621 milliseconds