HomeSort by relevance Sort by last modified time
    Searched refs:deletionList (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ImageDecodingStore.cpp 309 bool ImageDecodingStore::lockCacheEntryInternal(ImageCacheEntry* cacheEntry, const ScaledImageFragment** cachedImage, Vector<OwnPtr<CacheEntry> >* deletionList)
319 removeFromCacheInternal(cacheEntry, &m_imageCacheMap, &m_imageCacheKeyMap, deletionList);
320 removeFromCacheListInternal(*deletionList);
352 void ImageDecodingStore::removeFromCacheInternal(const T* cacheEntry, U* cacheMap, V* identifierMap, Vector<OwnPtr<CacheEntry> >* deletionList)
365 deletionList->append(cacheMap->take(cacheEntry->cacheKey()));
372 void ImageDecodingStore::removeFromCacheInternal(const CacheEntry* cacheEntry, Vector<OwnPtr<CacheEntry> >* deletionList)
375 removeFromCacheInternal(static_cast<const ImageCacheEntry*>(cacheEntry), &m_imageCacheMap, &m_imageCacheKeyMap, deletionList);
377 removeFromCacheInternal(static_cast<const DecoderCacheEntry*>(cacheEntry), &m_decoderCacheMap, &m_decoderCacheKeyMap, deletionList);
384 void ImageDecodingStore::removeCacheIndexedByGeneratorInternal(U* cacheMap, V* identifierMap, const ImageFrameGenerator* generator, Vector<OwnPtr<CacheEntry> >* deletionList)
399 removeFromCacheInternal(cacheEntry, cacheMap, identifierMap, deletionList);
    [all...]
ImageDecodingStore.h 253 // deletionList.
254 bool lockCacheEntryInternal(ImageCacheEntry*, const ScaledImageFragment**, Vector<OwnPtr<CacheEntry> >* deletionList);
259 // deletionList. Use of Vector<> is handy when removing multiple entries.
260 template<class T, class U, class V> void removeFromCacheInternal(const T* cacheEntry, U* cacheMap, V* identifierMap, Vector<OwnPtr<CacheEntry> >* deletionList);
264 void removeFromCacheInternal(const CacheEntry*, Vector<OwnPtr<CacheEntry> >* deletionList);
267 // Ownership of cache entries is transferred to deletionList.
268 template<class U, class V> void removeCacheIndexedByGeneratorInternal(U* cacheMap, V* identifierMap, const ImageFrameGenerator*, Vector<OwnPtr<CacheEntry> >* deletionList);
271 void removeFromCacheListInternal(const Vector<OwnPtr<CacheEntry> >& deletionList);

Completed in 33 milliseconds