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"
45 static OwnPtrWillBePersistent<MemoryCache>* gMemoryCache;
53 MemoryCache* memoryCache()
57 gMemoryCache = new OwnPtrWillBePersistent<MemoryCache>(MemoryCache::create());
61 PassOwnPtrWillBeRawPtr<MemoryCache> replaceMemoryCacheForTesting(PassOwnPtrWillBeRawPtr<MemoryCache> cache)
65 for (HeapHashSet<Member<Resource> >::iterator i = memoryCache()->m_liveResources.begin();
66 i != memoryCache()->m_liveResources.end()
    [all...]

Completed in 110 milliseconds