OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:memoryCache
(Results
1 - 6
of
6
) sorted by null
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
BitmapPreFiller.java
9
import com.bumptech.glide.load.engine.cache.
MemoryCache
;
21
private final
MemoryCache
memoryCache
;
28
public BitmapPreFiller(
MemoryCache
memoryCache
, BitmapPool bitmapPool, DecodeFormat defaultFormat) {
29
this.
memoryCache
=
memoryCache
;
50
current = new BitmapPreFillRunner(bitmapPool,
memoryCache
, allocationOrder);
56
final int maxSize =
memoryCache
.getMaxSize() -
memoryCache
.getCurrentSize() + bitmapPool.getMaxSize()
[
all
...]
BitmapPreFillRunner.java
11
import com.bumptech.glide.load.engine.cache.
MemoryCache
;
57
private final
MemoryCache
memoryCache
;
66
public BitmapPreFillRunner(BitmapPool bitmapPool,
MemoryCache
memoryCache
, PreFillQueue allocationOrder) {
67
this(bitmapPool,
memoryCache
, allocationOrder, DEFAULT_CLOCK, new Handler(Looper.getMainLooper()));
71
BitmapPreFillRunner(BitmapPool bitmapPool,
MemoryCache
memoryCache
, PreFillQueue allocationOrder, Clock clock,
74
this.
memoryCache
=
memoryCache
;
[
all
...]
/external/glide/library/src/main/java/com/bumptech/glide/
GlideBuilder.java
15
import com.bumptech.glide.load.engine.cache.
MemoryCache
;
30
private
MemoryCache
memoryCache
;
53
* Sets the {@link com.bumptech.glide.load.engine.cache.
MemoryCache
} implementation to store
56
* @param
memoryCache
The cache to use.
59
public GlideBuilder setMemoryCache(
MemoryCache
memoryCache
) {
60
this.
memoryCache
=
memoryCache
;
163
if (
memoryCache
== null)
[
all
...]
Glide.java
22
import com.bumptech.glide.load.engine.cache.
MemoryCache
;
76
* {@link
MemoryCache
}.
89
private final
MemoryCache
memoryCache
;
187
Glide(Engine engine,
MemoryCache
memoryCache
, BitmapPool bitmapPool, Context context, DecodeFormat decodeFormat) {
190
this.
memoryCache
=
memoryCache
;
194
bitmapPreFiller = new BitmapPreFiller(
memoryCache
, bitmapPool, decodeFormat);
353
memoryCache
.clearMemory()
[
all
...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Engine.java
12
import com.bumptech.glide.load.engine.cache.
MemoryCache
;
28
public class Engine implements EngineJobListener,
MemoryCache
.ResourceRemovedListener, EngineResource.ResourceListener {
32
private final
MemoryCache
cache;
56
public Engine(
MemoryCache
memoryCache
, DiskCache diskCache, ExecutorService diskCacheService,
58
this(
memoryCache
, diskCache, diskCacheService, sourceService, null, null, null, null, null);
62
Engine(
MemoryCache
cache, DiskCache diskCache, ExecutorService diskCacheService, ExecutorService sourceService,
/frameworks/support/samples/SupportLeanbackShowcase/libs/
picasso-2.5.2.jar
Completed in 114 milliseconds