OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:repetitionCount
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/qt/
ImageDecoderQt.h
50
virtual int
repetitionCount
() const;
ImageDecoderQt.cpp
122
int ImageDecoderQt::
repetitionCount
() const
201
repetitionCount
();
/external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageDecoder.h
50
virtual int
repetitionCount
() const;
GIFImageDecoder.cpp
95
int GIFImageDecoder::
repetitionCount
() const
304
repetitionCount
();
/external/webkit/Source/WebCore/platform/graphics/
BitmapImage.cpp
133
if (
repetitionCount
(false) != cAnimationNone)
286
int BitmapImage::
repetitionCount
(bool imageKnownToBeComplete)
293
m_repetitionCount = m_source.
repetitionCount
();
302
return (
repetitionCount
(false) != cAnimationNone && !m_animationFinished && imageObserver());
324
if (!m_allDataReceived &&
repetitionCount
(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1))
450
if (
repetitionCount
(true) != cAnimationLoopInfinite && m_repetitionsComplete > m_repetitionCount) {
ImageSource.cpp
123
int ImageSource::
repetitionCount
()
125
return m_decoder ? m_decoder->
repetitionCount
() : cAnimationNone;
ImageSource.h
193
int
repetitionCount
();
BitmapImage.h
233
int
repetitionCount
(bool imageKnownToBeComplete); // |imageKnownToBeComplete| should be set if the caller knows the entire image has been decoded.
/external/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp
299
int ImageSource::
repetitionCount
()
303
return m_decoder.m_gifDecoder->
repetitionCount
();
/external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCG.cpp
241
int ImageSource::
repetitionCount
()
/external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h
297
virtual int
repetitionCount
() const { return cAnimationNone; }
Completed in 476 milliseconds