OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cAnimationLoopOnce
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h
51
// GIF decoder defaults to
cAnimationLoopOnce
in the absence of any loop count
54
// * By making
cAnimationLoopOnce
be 0, we allow the animation cycling code in
59
const int
cAnimationLoopOnce
= 0;
BitmapImage.cpp
404
// decoder will default to
cAnimationLoopOnce
, and we'll try and read
436
if (!m_allDataReceived && repetitionCount(false) ==
cAnimationLoopOnce
&& m_currentFrame >= (frameCount() - 1))
559
// Note that we don't need to special-case
cAnimationLoopOnce
here
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp
41
, m_repetitionCount(
cAnimationLoopOnce
)
100
m_repetitionCount =
cAnimationLoopOnce
;
/external/chromium_org/third_party/WebKit/Source/web/tests/
WEBPImageDecoderTest.cpp
172
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
205
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
247
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
290
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
425
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
GIFImageDecoderTest.cpp
146
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
172
EXPECT_EQ(
cAnimationLoopOnce
, decoder->repetitionCount());
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.cpp
66
, m_repetitionCount(
cAnimationLoopOnce
)
176
return failed() ?
cAnimationLoopOnce
: m_repetitionCount;
Completed in 107 milliseconds