OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitmapPool
(Results
26 - 36
of
36
) sorted by null
1
2
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
ImageVideoGifDrawableLoadProvider.java
8
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
29
DataLoadProvider<InputStream, GifDrawable> gifProvider,
BitmapPool
bitmapPool
) {
34
bitmapPool
GifBitmapWrapperResourceDecoder.java
7
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
31
private final
BitmapPool
bitmapPool
;
37
ResourceDecoder<InputStream, GifDrawable> gifDecoder,
BitmapPool
bitmapPool
) {
38
this(bitmapDecoder, gifDecoder,
bitmapPool
, DEFAULT_PARSER, DEFAULT_STREAM_FACTORY);
43
ResourceDecoder<InputStream, GifDrawable> gifDecoder,
BitmapPool
bitmapPool
, ImageTypeParser parser,
47
this.
bitmapPool
=
bitmapPool
;
[
all
...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawable.java
19
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
59
* @param
bitmapPool
A {@link com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
} that can be used to return
70
public GifDrawable(Context context, GifDecoder.BitmapProvider bitmapProvider,
BitmapPool
bitmapPool
,
74
bitmapProvider,
bitmapPool
, firstFrame));
90
GifDrawable(GifDecoder decoder, GifFrameManager frameManager, Bitmap firstFrame,
BitmapPool
bitmapPool
) {
94
state.
bitmapPool
=
bitmapPool
;
[
all
...]
GifFrameManager.java
17
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
48
public GifFrameManager(Context context,
BitmapPool
bitmapPool
, GifDecoder decoder, Handler mainHandler,
57
GifFrameResourceDecoder frameResourceDecoder = new GifFrameResourceDecoder(
bitmapPool
);
/external/glide/library/src/main/java/com/bumptech/glide/
GlideBuilder.java
8
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
29
private
BitmapPool
bitmapPool
;
41
* Sets the {@link com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
} implementation to use to store and
44
* @param
bitmapPool
The pool to use.
47
public GlideBuilder setBitmapPool(
BitmapPool
bitmapPool
) {
48
this.
bitmapPool
=
bitmapPool
;
155
if (
bitmapPool
== null)
[
all
...]
Glide.java
21
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
75
* maintaining an {@link Engine}, {@link
BitmapPool
}, {@link com.bumptech.glide.load.engine.cache.DiskCache} and
88
private final
BitmapPool
bitmapPool
;
187
Glide(Engine engine, MemoryCache memoryCache,
BitmapPool
bitmapPool
, Context context, DecodeFormat decodeFormat) {
189
this.
bitmapPool
=
bitmapPool
;
194
bitmapPreFiller = new BitmapPreFiller(memoryCache,
bitmapPool
, decodeFormat);
199
new StreamBitmapDataLoadProvider(
bitmapPool
, decodeFormat)
[
all
...]
BitmapRequestBuilder.java
16
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
48
private final
BitmapPool
bitmapPool
;
58
this.
bitmapPool
= other.glide.getBitmapPool();
61
imageDecoder = new StreamBitmapDecoder(
bitmapPool
, decodeFormat);
62
videoDecoder = new FileDescriptorBitmapDecoder(
bitmapPool
, decodeFormat);
112
imageDecoder = new StreamBitmapDecoder(downsampler,
bitmapPool
, decodeFormat);
240
imageDecoder = new StreamBitmapDecoder(downsampler,
bitmapPool
, format);
241
videoDecoder = new FileDescriptorBitmapDecoder(new VideoBitmapDecoder(),
bitmapPool
, format);
242
super.cacheDecoder(new FileToStreamDecoder<Bitmap>(new StreamBitmapDecoder(downsampler,
bitmapPool
, format)))
[
all
...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java
10
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
103
public Bitmap decode(InputStream is,
BitmapPool
pool, int outWidth, int outHeight, DecodeFormat decodeFormat) {
190
private Bitmap downsampleWithSize(ExceptionCatchingInputStream is, BitmapFactory.Options options,
BitmapPool
pool,
TransformationUtils.java
13
import com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
;
80
* @param pool The
BitmapPool
to try to reuse a bitmap from.
86
public static Bitmap fitCenter(Bitmap toFit,
BitmapPool
pool, int width, int height) {
256
public static Bitmap rotateImageExif(Bitmap toOrient,
BitmapPool
pool, int exifOrientation) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/
BitmapPool.java
36
* Note: consumers should not create
BitmapPool
directly, but instead get the pool they want from
39
public class
BitmapPool
implements MemoryCache {
85
BitmapPool
(final int maxSize, @NonNull final String name) {
278
LogUtil.v(LogUtil.BUGLE_TAG, "
BitmapPool
(" + mPoolName +
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruBitmapPool.java
15
* An {@link com.bumptech.glide.load.engine.bitmap_recycle.
BitmapPool
} implementation that uses an
20
public class LruBitmapPool implements
BitmapPool
{
Completed in 5998 milliseconds
1
2