Home
last modified time | relevance | path

Searched refs:clearExceptFrame (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageDecoder.cpp257 size_t GIFImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
264 …while ((clearExceptFrame < m_frameBufferCache.size()) && (m_frameBufferCache[clearExceptFrame].sta… in clearCacheExceptFrame()
265 clearExceptFrame = m_frameBufferCache[clearExceptFrame].requiredPreviousFrameIndex(); in clearCacheExceptFrame()
267 return ImageDecoder::clearCacheExceptFrame(clearExceptFrame); in clearCacheExceptFrame()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageSource.cpp48 size_t ImageSource::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
50 return m_decoder ? m_decoder->clearCacheExceptFrame(clearExceptFrame) : 0; in clearCacheExceptFrame()
DDeferredImageDecoder.cpp155 size_t DeferredImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
159 return m_actualDecoder ? m_actualDecoder->clearCacheExceptFrame(clearExceptFrame) : 0; in clearCacheExceptFrame()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
DWEBPImageDecoder.cpp311 size_t WEBPImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
317 …while ((clearExceptFrame < m_frameBufferCache.size()) && (m_frameBufferCache[clearExceptFrame].sta… in clearCacheExceptFrame()
318 clearExceptFrame = m_frameBufferCache[clearExceptFrame].requiredPreviousFrameIndex(); in clearCacheExceptFrame()
320 return ImageDecoder::clearCacheExceptFrame(clearExceptFrame); in clearCacheExceptFrame()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.cpp135 size_t ImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
143 if (i != clearExceptFrame) { in clearCacheExceptFrame()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DGIFImageDecoderTest.cpp124 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) { in testRandomDecodeAfterClearFrameBufferCache() local
125 decoder->clearCacheExceptFrame(clearExceptFrame); in testRandomDecodeAfterClearFrameBufferCache()
DWEBPImageDecoderTest.cpp126 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) { in testRandomDecodeAfterClearFrameBufferCache() local
127 decoder->clearCacheExceptFrame(clearExceptFrame); in testRandomDecodeAfterClearFrameBufferCache()