HomeSort by relevance Sort by last modified time
    Searched defs:memoryCache (Results 1 - 3 of 3) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/
GlideBuilder.java 14 import com.bumptech.glide.load.engine.cache.MemoryCache;
27 private MemoryCache memoryCache;
46 public GlideBuilder setMemoryCache(MemoryCache memoryCache) {
47 this.memoryCache = memoryCache;
93 if (memoryCache == null) {
94 memoryCache = new LruResourceCache(calculator.getMemoryCacheSize());
108 engine = new Engine(memoryCache, diskCache, resizeService, diskCacheService)
    [all...]
Glide.java 21 import com.bumptech.glide.load.engine.cache.MemoryCache;
69 * an {@link Engine}, {@link BitmapPool}, {@link DiskCache} and {@link MemoryCache}.
87 private final MemoryCache memoryCache;
173 Glide(Engine engine, RequestQueue requestQueue, MemoryCache memoryCache, BitmapPool bitmapPool,
178 this.memoryCache = memoryCache;
274 memoryCache.clearMemory();
284 memoryCache.trimMemory(level)
    [all...]