Searched defs:memoryCache (Results 1 - 4 of 4) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/
H A DGlideBuilder.java27 private MemoryCache memoryCache; field in class:GlideBuilder
46 public GlideBuilder setMemoryCache(MemoryCache memoryCache) { argument
47 this.memoryCache = memoryCache;
93 if (memoryCache == null) {
94 memoryCache = new LruResourceCache(calculator.getMemoryCacheSize());
108 engine = new Engine(memoryCache, diskCache, resizeService, diskCacheService);
111 return new Glide(engine, requestQueue, memoryCache, bitmapPool, context);
H A DGlide.java87 private final MemoryCache memoryCache; field in class:Glide
173 Glide(Engine engine, RequestQueue requestQueue, MemoryCache memoryCache, BitmapPool bitmapPool, argument
178 this.memoryCache = memoryCache;
274 memoryCache.clearMemory();
284 memoryCache.trimMemory(level);
299 memoryCache.setSizeMultiplier(memoryCategory.getMultiplier());
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngine.java51 public Engine(MemoryCache memoryCache, DiskCache diskCache, ExecutorService resizeService, argument
53 this(null, memoryCache, diskCache, resizeService, diskCacheService, null, null, null);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp53 MemoryCache* memoryCache() function in namespace:blink
65 for (HeapHashSet<Member<Resource> >::iterator i = memoryCache()->m_liveResources.begin();
66 i != memoryCache()->m_liveResources.end();
70 memoryCache()->m_liveResources.clear();
73 memoryCache();
597 if (Resource* resource = memoryCache()->resourceForURL(url))
598 memoryCache()->remove(resource);

Completed in 85 milliseconds