Searched refs:frameDurationAtIndex (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageSource.cpp138 float ImageSource::frameDurationAtIndex(size_t index) const function in class:blink::ImageSource
147 const float duration = m_decoder->frameDurationAtIndex(index) / 1000.0f;
H A DDeferredImageDecoder.h73 float frameDurationAtIndex(size_t) const;
H A DImageSource.h120 float frameDurationAtIndex(size_t) const;
H A DDeferredImageDecoder.cpp183 float DeferredImageDecoder::frameDurationAtIndex(size_t index) const function in class:blink::DeferredImageDecoder
186 return m_actualDecoder->frameDurationAtIndex(index);
236 frame->setDuration(m_actualDecoder->frameDurationAtIndex(i));
H A DBitmapImage.cpp165 m_frames[index].m_duration = m_source.frameDurationAtIndex(index);
367 float BitmapImage::frameDurationAtIndex(size_t index) function in class:blink::BitmapImage
372 return m_source.frameDurationAtIndex(index);
470 const double currentDuration = frameDurationAtIndex(m_currentFrame);
504 double frameAfterNextStartTime = m_desiredFrameStartTime + frameDurationAtIndex(nextFrame);
H A DDeferredImageDecoderTest.cpp271 EXPECT_EQ(10.0f, m_lazyDecoder->frameDurationAtIndex(0));
284 EXPECT_EQ(20.0f, m_lazyDecoder->frameDurationAtIndex(1));
301 EXPECT_EQ(10.0f, m_lazyDecoder->frameDurationAtIndex(0));
302 EXPECT_EQ(20.0f, m_lazyDecoder->frameDurationAtIndex(1));
303 EXPECT_EQ(30.0f, m_lazyDecoder->frameDurationAtIndex(2));
H A DBitmapImage.h114 float frameDurationAtIndex(size_t);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoder.h56 virtual float frameDurationAtIndex(size_t) const OVERRIDE;
H A DGIFImageDecoder.cpp129 float GIFImageDecoder::frameDurationAtIndex(size_t index) const function in class:blink::GIFImageDecoder
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoder.h52 virtual float frameDurationAtIndex(size_t) const OVERRIDE;
H A DWEBPImageDecoderTest.cpp540 EXPECT_EQ(1000, decoder->frameDurationAtIndex(0));
542 EXPECT_EQ(500, decoder->frameDurationAtIndex(1));
547 EXPECT_EQ(1000, decoder->frameDurationAtIndex(0));
549 EXPECT_EQ(500, decoder->frameDurationAtIndex(1));
551 EXPECT_EQ(1000.0, decoder->frameDurationAtIndex(2));
H A DWEBPImageDecoder.cpp258 float WEBPImageDecoder::frameDurationAtIndex(size_t index) const
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockImageDecoder.h105 virtual float frameDurationAtIndex(size_t) const OVERRIDE
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageDecoder.h165 virtual float frameDurationAtIndex(size_t) const { return 0; } function in class:blink::ImageDecoder

Completed in 222 milliseconds