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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageDecodingStore.cpp236 void ImageDecodingStore::removeFromCacheInternal(const T* cacheEntry, U* cacheMap, V* identifierMap, Vector<OwnPtr<CacheEntry> >* deletionList) argument
250 deletionList->append(cacheMap->take(cacheEntry->cacheKey()));
256 void ImageDecodingStore::removeFromCacheInternal(const CacheEntry* cacheEntry, Vector<OwnPtr<CacheEntry> >* deletionList) argument
259 removeFromCacheInternal(static_cast<const DecoderCacheEntry*>(cacheEntry), &m_decoderCacheMap, &m_decoderCacheKeyMap, deletionList); local
266 void ImageDecodingStore::removeCacheIndexedByGeneratorInternal(U* cacheMap, V* identifierMap, const ImageFrameGenerator* generator, Vector<OwnPtr<CacheEntry> >* deletionList) argument
281 removeFromCacheInternal(cacheEntry, cacheMap, identifierMap, deletionList);
285 void ImageDecodingStore::removeFromCacheListInternal(const Vector<OwnPtr<CacheEntry> >& deletionList) argument
287 for (size_t i = 0; i < deletionList.size(); ++i)
288 m_orderedCacheList.remove(deletionList[i].get());

Completed in 76 milliseconds