Searched defs:frameCount (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/third_party/WebKit/PerformanceTests/Animation/resources/
H A Dframerate.js4 var frameCount = 0; variable
10 if (++frameCount == framesPerTimerReading) {
11 frameCount = 0;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebImageDecoder.cpp90 size_t WebImageDecoder::frameCount() const function in class:blink::WebImageDecoder
93 return m_private->frameCount();
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
H A DGifHeader.java13 public int frameCount = 0; field in class:GifHeader
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java32 public SpriteAnimation(int animationId, int frameCount) { argument
34 mFrames = new FixedSizeArray<AnimationFrame>(frameCount);
35 mFrameStartTimes = new float[frameCount];
47 final int frameCount = frames.getCount();
48 result = frames.get(frameCount - 1);
50 if (frameCount > 1) {
68 for (int x = 0; x < frameCount; x++) {
H A DUtils.java87 public final static float framesToTime(int framesPerSecond, int frameCount) { argument
88 return (1.0f / framesPerSecond) * frameCount;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptCallStackFactory.cpp72 int frameCount = stackTrace->GetFrameCount(); local
73 if (frameCount > static_cast<int>(maxStackSize))
74 frameCount = maxStackSize;
75 for (int i = 0; i < frameCount; i++) {
79 if (!frameCount && !emptyStackIsAllowed) {
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebImageSkia.cpp63 const size_t frameCount = decoder->frameCount(); local
66 for (size_t i = 0; i < frameCount; ++i) {
110 const size_t frameCount = decoder->frameCount(); local
114 for (size_t i = 0; i < std::min(frameCount, maxFrameCount); ++i) {
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageDecodingStoreTest.cpp70 virtual size_t frameCount() { return 1; } function in class:__anon11313::ImageDecodingStoreTest
H A DBitmapImageTest.cpp71 size_t frameCount() { return m_image->frameCount(); } function in class:blink::BitmapImageTest
85 size_t frameCount = m_image->frameCount(); local
86 for (size_t i = 0; i < frameCount; ++i)
134 size_t frame = frameCount() / 2;
160 for (size_t i = 0; i < frameCount(); ++i) {
H A DImageSource.cpp114 size_t ImageSource::frameCount() const function in class:blink::ImageSource
116 return m_decoder ? m_decoder->frameCount() : 0;
H A DDeferredImageDecoder.cpp148 size_t DeferredImageDecoder::frameCount() function in class:blink::DeferredImageDecoder
150 return m_actualDecoder ? m_actualDecoder->frameCount() : m_lazyDecodedFrames.size();
212 const bool isSingleFrame = m_actualDecoder->repetitionCount() == cAnimationNone || (m_allDataReceived && m_actualDecoder->frameCount() == 1u);
227 m_lazyDecodedFrames.resize(m_actualDecoder->frameCount());
H A DRecordingImageBufferSurfaceTest.cpp68 int frameCount() { return m_frameCount; } function in class:__anon11316::FakeImageBufferClient
98 EXPECT_EQ(1, m_fakeImageBufferClient->frameCount());
107 EXPECT_EQ(1, m_fakeImageBufferClient->frameCount());
118 EXPECT_EQ(2, m_fakeImageBufferClient->frameCount());
127 EXPECT_EQ(1, m_fakeImageBufferClient->frameCount());
131 EXPECT_EQ(2, m_fakeImageBufferClient->frameCount());
140 EXPECT_EQ(1, m_fakeImageBufferClient->frameCount());
143 EXPECT_EQ(1, m_fakeImageBufferClient->frameCount());
146 EXPECT_EQ(2, m_fakeImageBufferClient->frameCount());
149 EXPECT_EQ(2, m_fakeImageBufferClient->frameCount());
[all...]
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DMaxTextureSizeTest.cpp241 const int frameCount = 64; local
242 for (int i = 0; i < frameCount; i++)
247 GLubyte clearRed = static_cast<GLubyte>((float(i) / frameCount) * 255);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoderTest.cpp72 size_t frameCount = decoder->frameCount(); local
73 for (size_t i = 0; i < frameCount; ++i) {
87 size_t frameCount = baselineHashes.size(); local
94 for (size_t j = i; j < frameCount; j += skippingStep) {
104 for (size_t i = frameCount; i; --i) {
119 size_t frameCount = baselineHashes.size(); local
123 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) {
127 for (size_t j = 0; j < frameCount; j += skippingStep) {
160 EXPECT_EQ(2u, decoder->frameCount());
195 size_t frameCount = 0; local
220 size_t frameCount = 0; local
402 unsigned frameCount = decoder->frameCount(); local
435 size_t frameCount = baselineHashes.size(); local
[all...]
H A DGIFImageDecoder.cpp67 size_t GIFImageDecoder::frameCount() function in class:blink::GIFImageDecoder
110 if (index >= frameCount())
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
H A DICOImageDecoder.cpp100 size_t ICOImageDecoder::frameCount() function in class:blink::ICOImageDecoder
119 if (index >= frameCount())
217 // we must not resize it again later (see caution in frameCount()).
/external/chromium_org/third_party/skia/src/animator/
H A DSkOperandIterpolator.cpp18 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount, argument
21 this->reset(elemCount, frameCount, type);
24 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type) argument
28 INHERITED::reset(elemCount, frameCount);
30 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount);
32 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java68 private int frameCount = 1; field in class:VisualSampleEntry
95 return frameCount;
126 public void setFrameCount(int frameCount) { argument
127 this.frameCount = frameCount;
150 frameCount = IsoTypeReader.readUInt16(content);
/external/skia/src/animator/
H A DSkOperandIterpolator.cpp18 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount, argument
21 this->reset(elemCount, frameCount, type);
24 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type) argument
28 INHERITED::reset(elemCount, frameCount);
30 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount);
32 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Ddecoder-sbc.c371 OI_UINT8 frameCount = 0; local
381 return frameCount;
409 frameCount++;
418 return frameCount;
/external/chromium_org/third_party/skia/src/utils/
H A DSkInterpolator.cpp26 void SkInterpolatorBase::reset(int elemCount, int frameCount) { argument
29 fFrameCount = SkToS16(frameCount);
137 SkInterpolator::SkInterpolator(int elemCount, int frameCount) {
139 this->reset(elemCount, frameCount);
142 void SkInterpolator::reset(int elemCount, int frameCount) { argument
143 INHERITED::reset(elemCount, frameCount);
145 sizeof(SkTimeCode)) * frameCount);
147 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
/external/chromium_org/third_party/webrtc/modules/video_capture/android/java/src/org/webrtc/videoengine/
H A DVideoCaptureAndroid.java60 private int frameCount; field in class:VideoCaptureAndroid
203 frameCount = 0;
297 frameCount++;
299 if (frameCount > 1) {
302 if ((frameCount % 30) == 0) {
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dgeneric_codec_test.cc284 VCMFrameCount frameCount; // testing frame type counters local
363 _vcm->SentFrameCount(frameCount);
364 printf("frame count: %d delta, %d key\n", frameCount.numDeltaFrames, frameCount.numKeyFrames);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DMockSpdyPeer.java40 private int frameCount = 0; field in class:MockSpdyPeer
63 frameCount++;
67 public int frameCount() { method in class:MockSpdyPeer
68 return frameCount;
72 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), Integer.MAX_VALUE));
81 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), Integer.MAX_VALUE));
91 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), truncateToLength));
127 for (int i = 0; i < frameCount; i++) {
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_codec_sbc.h158 OI_UINT32 frameCount; member in struct:__anon1108

Completed in 831 milliseconds

12