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...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.cpp 24 #include "core/fetch/MemoryCache.h"
46 static MemoryCache* gMemoryCache;
54 MemoryCache* memoryCache()
58 gMemoryCache = new MemoryCache();
62 void setMemoryCacheForTesting(MemoryCache* memoryCache)
64 gMemoryCache = memoryCache;
67 MemoryCache::MemoryCache()
    [all...]

Completed in 192 milliseconds