frameCount         73 Source/bindings/v8/ScriptCallStackFactory.cpp     int frameCount = stackTrace->GetFrameCount();
frameCount         74 Source/bindings/v8/ScriptCallStackFactory.cpp     if (frameCount > static_cast<int>(maxStackSize))
frameCount         75 Source/bindings/v8/ScriptCallStackFactory.cpp         frameCount = maxStackSize;
frameCount         76 Source/bindings/v8/ScriptCallStackFactory.cpp     for (int i = 0; i < frameCount; i++) {
frameCount         80 Source/bindings/v8/ScriptCallStackFactory.cpp     if (!frameCount && !emptyStackIsAllowed) {
frameCount         65 Source/platform/exported/WebImageSkia.cpp     const size_t frameCount = decoder->frameCount();
frameCount         68 Source/platform/exported/WebImageSkia.cpp     for (size_t i = 0; i < frameCount; ++i) {
frameCount        112 Source/platform/exported/WebImageSkia.cpp     const size_t frameCount = decoder->frameCount();
frameCount        116 Source/platform/exported/WebImageSkia.cpp     for (size_t i = 0; i < std::min(frameCount, maxFrameCount); ++i) {
frameCount        140 Source/platform/graphics/BitmapImage.cpp     size_t numFrames = frameCount();
frameCount        303 Source/platform/graphics/BitmapImage.cpp         m_frameCount = m_source.frameCount();
frameCount        324 Source/platform/graphics/BitmapImage.cpp     if (index >= frameCount())
frameCount        393 Source/platform/graphics/BitmapImage.cpp     return size().width() != 1 || size().height() != 1 || frameCount() > 1;
frameCount        419 Source/platform/graphics/BitmapImage.cpp     if (m_frameTimer || !shouldAnimate() || frameCount() <= 1)
frameCount        428 Source/platform/graphics/BitmapImage.cpp     size_t nextFrame = (m_currentFrame + 1) % frameCount();
frameCount        436 Source/platform/graphics/BitmapImage.cpp     if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1))
frameCount        474 Source/platform/graphics/BitmapImage.cpp         for (size_t frameAfterNext = (nextFrame + 1) % frameCount(); frameIsCompleteAtIndex(frameAfterNext); frameAfterNext = (nextFrame + 1) % frameCount()) {
frameCount        537 Source/platform/graphics/BitmapImage.cpp     if (frameCount() > 1)
frameCount        562 Source/platform/graphics/BitmapImage.cpp     if (m_currentFrame >= frameCount()) {
frameCount        592 Source/platform/graphics/BitmapImage.cpp     if (frameCount() > 1)
frameCount        609 Source/platform/graphics/BitmapImage.cpp     if (!m_checkedForSolidColor && frameCount() > 0) {
frameCount        107 Source/platform/graphics/BitmapImage.h     size_t frameCount();
frameCount         71 Source/platform/graphics/BitmapImageTest.cpp     size_t frameCount() { return m_image->frameCount(); }
frameCount         84 Source/platform/graphics/BitmapImageTest.cpp         size_t frameCount = m_image->frameCount();
frameCount         85 Source/platform/graphics/BitmapImageTest.cpp         for (size_t i = 0; i < frameCount; ++i)
frameCount        128 Source/platform/graphics/BitmapImageTest.cpp     size_t frame = frameCount() / 2;
frameCount        154 Source/platform/graphics/BitmapImageTest.cpp     for (size_t i = 0; i < frameCount(); ++i) {
frameCount        153 Source/platform/graphics/DeferredImageDecoder.cpp     return m_actualDecoder ? m_actualDecoder->frameCount() : m_lazyDecodedFrames.size();
frameCount        214 Source/platform/graphics/DeferredImageDecoder.cpp     const bool isSingleFrame = m_actualDecoder->repetitionCount() == cAnimationNone || (m_allDataReceived && m_actualDecoder->frameCount() == 1u);
frameCount        229 Source/platform/graphics/DeferredImageDecoder.cpp     m_lazyDecodedFrames.resize(m_actualDecoder->frameCount());
frameCount         65 Source/platform/graphics/DeferredImageDecoder.h     size_t frameCount();
frameCount        332 Source/platform/graphics/DeferredImageDecoderTest.cpp     EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount());
frameCount        335 Source/platform/graphics/DeferredImageDecoderTest.cpp     EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount());
frameCount        338 Source/platform/graphics/DeferredImageDecoderTest.cpp     EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount());
frameCount        110 Source/platform/graphics/ImageSource.cpp     return m_decoder ? m_decoder->frameCount() : 0;
frameCount        112 Source/platform/graphics/ImageSource.h     size_t frameCount() const;
frameCount       1559 Source/platform/graphics/gpu/WebGLImageConversion.cpp         if (!decoder->frameCount())
frameCount         38 Source/platform/graphics/test/MockImageDecoder.h     virtual size_t frameCount() = 0;
frameCount         82 Source/platform/graphics/test/MockImageDecoder.h     virtual size_t frameCount() OVERRIDE
frameCount         84 Source/platform/graphics/test/MockImageDecoder.h         return m_client->frameCount();
frameCount        132 Source/platform/image-decoders/ImageDecoder.h     virtual size_t frameCount() { return 1; }
frameCount        110 Source/platform/image-decoders/gif/GIFImageDecoder.cpp     if (index >= frameCount())
frameCount         52 Source/platform/image-decoders/gif/GIFImageDecoder.h     virtual size_t frameCount() OVERRIDE;
frameCount         73 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     size_t frameCount = decoder->frameCount();
frameCount         74 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     for (size_t i = 0; i < frameCount; ++i) {
frameCount         88 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     size_t frameCount = baselineHashes.size();
frameCount         95 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         for (size_t j = i; j < frameCount; j += skippingStep) {
frameCount        105 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     for (size_t i = frameCount; i; --i) {
frameCount        120 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     size_t frameCount = baselineHashes.size();
frameCount        124 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) {
frameCount        128 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp             for (size_t j = 0; j < frameCount; j += skippingStep) {
frameCount        161 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        175 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        196 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     size_t frameCount = 0;
frameCount        203 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         EXPECT_LE(frameCount, decoder->frameCount());
frameCount        204 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         frameCount = decoder->frameCount();
frameCount        207 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        221 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     size_t frameCount = 0;
frameCount        229 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         EXPECT_LE(frameCount, decoder->frameCount());
frameCount        230 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         frameCount = decoder->frameCount();
frameCount        232 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         ImageFrame* frame = decoder->frameBufferAtIndex(frameCount - 1);
frameCount        233 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp         if (frame && frame->status() == ImageFrame::FrameComplete && framesDecoded < frameCount)
frameCount        237 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(5u, decoder->frameCount());
frameCount        251 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(1u, decoder->frameCount());
frameCount        318 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        335 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        353 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        359 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        373 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(1u, referenceDecoder->frameCount());
frameCount        379 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(1u, testDecoder->frameCount());
frameCount        400 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     } while (!decoder->frameCount() || decoder->frameBufferAtIndex(0)->status() == ImageFrame::FrameEmpty);
frameCount        403 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     unsigned frameCount = decoder->frameCount();
frameCount        404 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     for (size_t i = 1; i < frameCount; ++i)
frameCount        408 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     for (size_t i = 0; i < frameCount; ++i)
frameCount        436 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     size_t frameCount = baselineHashes.size();
frameCount        446 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     } while (!decoder->frameCount() || decoder->frameBufferAtIndex(0)->status() == ImageFrame::FrameEmpty);
frameCount        450 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(frameCount, decoder->frameCount());
frameCount        451 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     ImageFrame* lastFrame = decoder->frameBufferAtIndex(frameCount - 1);
frameCount        452 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(baselineHashes[frameCount - 1], hashSkBitmap(lastFrame->getSkBitmap()));
frameCount        470 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(1u, testDecoder->frameCount());
frameCount        483 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(1u, testDecoder->frameCount());
frameCount        497 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        119 Source/platform/image-decoders/ico/ICOImageDecoder.cpp     if (index >= frameCount())
frameCount         53 Source/platform/image-decoders/ico/ICOImageDecoder.h     virtual size_t frameCount() OVERRIDE;
frameCount        114 Source/platform/image-decoders/webp/WEBPImageDecoder.cpp     if (index >= frameCount())
frameCount         46 Source/platform/image-decoders/webp/WEBPImageDecoder.h     virtual size_t frameCount() OVERRIDE;
frameCount         75 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     size_t frameCount = decoder->frameCount();
frameCount         76 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     for (size_t i = 0; i < frameCount; ++i) {
frameCount         90 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     size_t frameCount = baselineHashes.size();
frameCount         97 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         for (size_t j = i; j < frameCount; j += skippingStep) {
frameCount        107 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     for (size_t i = frameCount; i; --i) {
frameCount        122 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     size_t frameCount = baselineHashes.size();
frameCount        126 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) {
frameCount        130 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp             for (size_t j = 0; j < frameCount; j += skippingStep) {
frameCount        147 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     size_t frameCount = decoder->frameCount();
frameCount        155 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     for (size_t i = 0; i < frameCount; ++i) {
frameCount        172 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         EXPECT_EQ(0u, decoder->frameCount());
frameCount        174 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         EXPECT_LT(0u, decoder->frameCount());
frameCount        236 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(ARRAY_SIZE(frameParameters), decoder->frameCount());
frameCount        279 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(ARRAY_SIZE(frameParameters), decoder->frameCount());
frameCount        322 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(ARRAY_SIZE(frameParameters), decoder->frameCount());
frameCount        330 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         unsigned frameCount;
frameCount        342 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         size_t frameCount = 0;
frameCount        350 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp             EXPECT_LE(frameCount, decoder->frameCount());
frameCount        351 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp             frameCount = decoder->frameCount();
frameCount        353 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp             ImageFrame* frame = decoder->frameBufferAtIndex(frameCount - 1);
frameCount        354 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp             if (frame && frame->status() == ImageFrame::FrameComplete && framesDecoded < frameCount)
frameCount        358 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         EXPECT_EQ(testImages[i].frameCount, decoder->frameCount());
frameCount        359 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp         EXPECT_EQ(testImages[i].frameCount, framesDecoded);
frameCount        380 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     unsigned frameCount = 8;
frameCount        381 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(frameCount, decoder->frameCount());
frameCount        382 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     ImageFrame* frame = decoder->frameBufferAtIndex(frameCount - 1);
frameCount        414 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(1u, decoder->frameCount());
frameCount        418 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(0u, decoder->frameCount());
frameCount        484 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(2u, decoder->frameCount());
frameCount        492 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(3u, decoder->frameCount());
frameCount        515 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     } while (!decoder->frameCount() || decoder->frameBufferAtIndex(0)->status() == ImageFrame::FrameEmpty);
frameCount        518 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     unsigned frameCount = decoder->frameCount();
frameCount        519 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     for (size_t i = 1; i < frameCount; ++i)
frameCount        523 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     for (size_t i = 0; i < frameCount; ++i)
frameCount        549 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     size_t frameCount = baselineHashes.size();
frameCount        559 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     } while (!decoder->frameCount() || decoder->frameBufferAtIndex(0)->status() == ImageFrame::FrameEmpty);
frameCount        563 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(frameCount, decoder->frameCount());
frameCount        564 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     ImageFrame* lastFrame = decoder->frameBufferAtIndex(frameCount - 1);
frameCount        565 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(baselineHashes[frameCount - 1], hashSkBitmap(lastFrame->getSkBitmap()));
frameCount        594 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     EXPECT_EQ(1u, decoder->frameCount());
frameCount        110 Source/platform/mhtml/MHTMLArchive.cpp     for (size_t i = 0; i < parser.frameCount(); ++i) {
frameCount        112 Source/platform/mhtml/MHTMLArchive.cpp         for (size_t j = 1; j < parser.frameCount(); ++j) {
frameCount         55 Source/platform/mhtml/MHTMLParser.h     size_t frameCount() const;
frameCount        195 Source/web/WebFrameImpl.cpp static int frameCount = 0;
frameCount        457 Source/web/WebFrameImpl.cpp     return frameCount;
frameCount       1653 Source/web/WebFrameImpl.cpp     frameCount++;
frameCount       1663 Source/web/WebFrameImpl.cpp     frameCount--;
frameCount         95 Source/web/WebImageDecoder.cpp     return m_private->frameCount();
frameCount         73 public/web/WebImageDecoder.h     BLINK_EXPORT size_t frameCount() const;