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.cpp259 size_t GIFImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
266 …while ((clearExceptFrame < m_frameBufferCache.size()) && (m_frameBufferCache[clearExceptFrame].sta… in clearCacheExceptFrame()
267 clearExceptFrame = m_frameBufferCache[clearExceptFrame].requiredPreviousFrameIndex(); in clearCacheExceptFrame()
269 return ImageDecoder::clearCacheExceptFrame(clearExceptFrame); in clearCacheExceptFrame()
DGIFImageDecoderTest.cpp123 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) { in testRandomDecodeAfterClearFrameBufferCache() local
124 decoder->clearCacheExceptFrame(clearExceptFrame); in testRandomDecodeAfterClearFrameBufferCache()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageSource.cpp46 size_t ImageSource::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
48 return m_decoder ? m_decoder->clearCacheExceptFrame(clearExceptFrame) : 0; in clearCacheExceptFrame()
DDeferredImageDecoder.cpp158 size_t DeferredImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
162 return m_actualDecoder ? m_actualDecoder->clearCacheExceptFrame(clearExceptFrame) : 0; in clearCacheExceptFrame()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
DWEBPImageDecoder.cpp388 size_t WEBPImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
394 …while ((clearExceptFrame < m_frameBufferCache.size()) && (m_frameBufferCache[clearExceptFrame].sta… in clearCacheExceptFrame()
395 clearExceptFrame = m_frameBufferCache[clearExceptFrame].requiredPreviousFrameIndex(); in clearCacheExceptFrame()
397 return ImageDecoder::clearCacheExceptFrame(clearExceptFrame); in clearCacheExceptFrame()
DWEBPImageDecoderTest.cpp125 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) { in testRandomDecodeAfterClearFrameBufferCache() local
126 decoder->clearCacheExceptFrame(clearExceptFrame); in testRandomDecodeAfterClearFrameBufferCache()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.cpp141 size_t ImageDecoder::clearCacheExceptFrame(size_t clearExceptFrame) in clearCacheExceptFrame() argument
149 if (i != clearExceptFrame) { in clearCacheExceptFrame()