isDiscardable      53 Source/platform/graphics/DiscardablePixelRef.h     static bool isDiscardable(SkPixelRef*);
isDiscardable     196 Source/platform/graphics/ImageDecodingStore.cpp void ImageDecodingStore::insertDecoder(const ImageFrameGenerator* generator, PassOwnPtr<ImageDecoder> decoder, bool isDiscardable)
isDiscardable     201 Source/platform/graphics/ImageDecodingStore.cpp     OwnPtr<DecoderCacheEntry> newCacheEntry = DecoderCacheEntry::create(generator, decoder, isDiscardable);
isDiscardable     359 Source/platform/graphics/ImageDecodingStore.cpp     if (cacheEntry->isDiscardable())
isDiscardable     383 Source/platform/graphics/ImageDecodingStore.cpp     if (cacheEntry->isDiscardable()) {
isDiscardable     120 Source/platform/graphics/ImageDecodingStore.h     void insertDecoder(const ImageFrameGenerator*, PassOwnPtr<ImageDecoder>, bool isDiscardable);
isDiscardable     160 Source/platform/graphics/ImageDecodingStore.h         CacheEntry(const ImageFrameGenerator* generator, int useCount, bool isDiscardable)
isDiscardable     163 Source/platform/graphics/ImageDecodingStore.h             , m_isDiscardable(isDiscardable)
isDiscardable     178 Source/platform/graphics/ImageDecodingStore.h         bool isDiscardable() const { return m_isDiscardable; }
isDiscardable     203 Source/platform/graphics/ImageDecodingStore.h             : CacheEntry(generator, count, DiscardablePixelRef::isDiscardable(image->bitmap().pixelRef()))
isDiscardable     227 Source/platform/graphics/ImageDecodingStore.h         static PassOwnPtr<DecoderCacheEntry> create(const ImageFrameGenerator* generator, PassOwnPtr<ImageDecoder> decoder, bool isDiscardable)
isDiscardable     229 Source/platform/graphics/ImageDecodingStore.h             return adoptPtr(new DecoderCacheEntry(generator, 0, decoder, isDiscardable));
isDiscardable     232 Source/platform/graphics/ImageDecodingStore.h         DecoderCacheEntry(const ImageFrameGenerator* generator, int count, PassOwnPtr<ImageDecoder> decoder, bool isDiscardable)
isDiscardable     233 Source/platform/graphics/ImageDecodingStore.h             : CacheEntry(generator, count, isDiscardable)
isDiscardable     227 Source/platform/graphics/ImageFrameGenerator.cpp         ImageDecodingStore::instance()->insertDecoder(this, decoderContainer.release(), DiscardablePixelRef::isDiscardable(cachedImage->bitmap().pixelRef()));