OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frameDurationAtIndex
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h
120
float
frameDurationAtIndex
(size_t) const;
ImageSource.cpp
138
float ImageSource::
frameDurationAtIndex
(size_t index) const
147
const float duration = m_decoder->
frameDurationAtIndex
(index) / 1000.0f;
DeferredImageDecoder.h
73
float
frameDurationAtIndex
(size_t) const;
DeferredImageDecoder.cpp
183
float DeferredImageDecoder::
frameDurationAtIndex
(size_t index) const
186
return m_actualDecoder->
frameDurationAtIndex
(index);
236
frame->setDuration(m_actualDecoder->
frameDurationAtIndex
(i));
BitmapImage.cpp
165
m_frames[index].m_duration = m_source.
frameDurationAtIndex
(index);
367
float BitmapImage::
frameDurationAtIndex
(size_t index)
372
return m_source.
frameDurationAtIndex
(index);
470
const double currentDuration =
frameDurationAtIndex
(m_currentFrame);
504
double frameAfterNextStartTime = m_desiredFrameStartTime +
frameDurationAtIndex
(nextFrame);
DeferredImageDecoderTest.cpp
271
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));
BitmapImage.h
114
float
frameDurationAtIndex
(size_t);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.h
56
virtual float
frameDurationAtIndex
(size_t) const OVERRIDE;
GIFImageDecoder.cpp
129
float GIFImageDecoder::
frameDurationAtIndex
(size_t index) const
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h
52
virtual float
frameDurationAtIndex
(size_t) const OVERRIDE;
WEBPImageDecoderTest.cpp
540
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));
WEBPImageDecoder.cpp
258
float WEBPImageDecoder::
frameDurationAtIndex
(size_t index) const
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockImageDecoder.h
105
virtual float
frameDurationAtIndex
(size_t) const OVERRIDE
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
165
virtual float
frameDurationAtIndex
(size_t) const { return 0; }
Completed in 147 milliseconds