HomeSort by relevance Sort by last modified time
    Searched refs:frameCount (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/PerformanceTests/Animation/resources/
framerate.js 4 var frameCount = 0;
10 if (++frameCount == framesPerTimerReading) {
11 frameCount = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
RecordingImageBufferSurfaceTest.cpp 68 int frameCount() { return m_frameCount; }
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...]
BitmapImage.cpp 153 size_t numFrames = frameCount();
318 size_t BitmapImage::frameCount()
321 m_frameCount = m_source.frameCount();
322 // If decoder is not initialized yet, m_source.frameCount() returns 0.
342 if (index >= frameCount())
382 if (frameCount() > 1 && frameAtIndex(0))
423 return size().width() != 1 || size().height() != 1 || frameCount() > 1;
447 if (m_frameTimer || !shouldAnimate() || frameCount() <= 1)
456 size_t nextFrame = (m_currentFrame + 1) % frameCount();
464 if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1)
    [all...]
BitmapImageTest.cpp 71 size_t frameCount() { return m_image->frameCount(); }
85 size_t frameCount = m_image->frameCount();
86 for (size_t i = 0; i < frameCount; ++i)
134 size_t frame = frameCount() / 2;
160 for (size_t i = 0; i < frameCount(); ++i) {
ImageSource.h 116 size_t frameCount() const;
  /external/chromium_org/third_party/skia/src/animator/
SkOperandInterpolator.h 20 SkOperandInterpolator(int elemCount, int frameCount, SkDisplayTypes type);
23 void reset(int elemCount, int frameCount, SkDisplayTypes type);
SkOperandIterpolator.cpp 18 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount,
21 this->reset(elemCount, frameCount, type);
24 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type)
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/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoderTest.cpp 72 size_t frameCount = decoder->frameCount();
73 for (size_t i = 0; i < frameCount; ++i) {
87 size_t frameCount = baselineHashes.size();
94 for (size_t j = i; j < frameCount; j += skippingStep) {
104 for (size_t i = frameCount; i; --i) {
119 size_t frameCount = baselineHashes.size();
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());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebImageSkia.cpp 63 const size_t frameCount = decoder->frameCount();
66 for (size_t i = 0; i < frameCount; ++i) {
110 const size_t frameCount = decoder->frameCount();
114 for (size_t i = 0; i < std::min(frameCount, maxFrameCount); ++i) {
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoderTest.cpp 74 size_t frameCount = decoder->frameCount();
75 for (size_t i = 0; i < frameCount; ++i) {
89 size_t frameCount = baselineHashes.size();
96 for (size_t j = i; j < frameCount; j += skippingStep) {
106 for (size_t i = frameCount; i; --i) {
121 size_t frameCount = baselineHashes.size();
125 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) {
129 for (size_t j = 0; j < frameCount; j += skippingStep) {
146 size_t frameCount = decoder->frameCount()
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeader.java 13 public int frameCount = 0;
  /external/chromium_org/third_party/skia/include/utils/
SkInterpolator.h 26 void reset(int elemCount, int frameCount);
90 SkInterpolator(int elemCount, int frameCount);
91 void reset(int elemCount, int frameCount);
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java 87 final int frameCount = stats.getFrameCount();
88 assertTrue(frameCount > 0);
95 assertEquals(stats.getEndTimeNano(), stats.getFramePresentedTimeNano(frameCount - 1));
189 final int frameCount = stats.getFrameCount();
190 assertTrue(frameCount > 0);
197 assertEquals(stats.getEndTimeNano(), stats.getFramePresentedTimeNano(frameCount - 1));
242 final int frameCount = stats.getFrameCount();
243 for (int i = 0; i < frameCount; i++) {
269 final int frameCount = stats.getFrameCount();
270 for (int i = 0; i < frameCount; i++)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
VisualSampleEntry.java 68 private int frameCount = 1;
95 return frameCount;
126 public void setFrameCount(int frameCount) {
127 this.frameCount = frameCount;
150 frameCount = IsoTypeReader.readUInt16(content);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockImageDecoder.h 38 virtual size_t frameCount() = 0;
82 virtual size_t frameCount() OVERRIDE
84 return m_client->frameCount();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FrameCountTest.java 37 * JDWP Unit test for ThreadReference.FrameCount command.
52 * this list with the value got via invoking ThreadReference.FrameCount command.
74 checkReplyPacket(reply, "ThreadReference::FrameCount command");
76 int frameCount = reply.getNextValueAsInt();
77 logWriter.println("\tframe count = " + frameCount);
79 if (frameCount != expectedCount) {
80 printErrorAndFail("Unexpected frame count = " + frameCount
OwnedMonitorsStackDepthInfoTest.java 55 checkReplyPacket(reply, "ThreadReference::FrameCount command");
104 int frameCount = jdwpGetFrameCount(testedThreadID);
106 int[] expectedStackDepth = new int[] { frameCount - 4, frameCount - 4, frameCount - 2 };
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.h 57 size_t frameCount() const;
  /external/chromium_org/third_party/WebKit/public/web/
WebImageDecoder.h 72 BLINK_EXPORT size_t frameCount() const;
  /external/chromium_org/third_party/WebKit/Source/web/
WebImageDecoder.cpp 90 size_t WebImageDecoder::frameCount() const
93 return m_private->frameCount();
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 26 void SkInterpolatorBase::reset(int elemCount, int frameCount) {
29 fFrameCount = SkToS16(frameCount);
137 SkInterpolator::SkInterpolator(int elemCount, int frameCount) {
139 this->reset(elemCount, frameCount);
142 void SkInterpolator::reset(int elemCount, int frameCount) {
143 INHERITED::reset(elemCount, frameCount);
145 sizeof(SkTimeCode)) * frameCount);
147 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptCallStackFactory.cpp 72 int frameCount = stackTrace->GetFrameCount();
73 if (frameCount > static_cast<int>(maxStackSize))
74 frameCount = maxStackSize;
75 for (int i = 0; i < frameCount; i++) {
79 if (!frameCount && !emptyStackIsAllowed) {
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 74 int frameCount;
675 for (int frameNdx = 0; frameNdx < m_config.frameCount; frameNdx++)
1000 log << TestLog::Message << "Total triangles rendered: : " << config.triangleCount * config.drawCallCount * config.frameCount * config.perThreadContextCount * config.threadCount << TestLog::EndMessage;
1003 log << TestLog::Message << "Number of frames rendered with each context: " << config.frameCount << TestLog::EndMessage;
1107 basicConfig.frameCount = 10;
1156 smallConfig.frameCount = 10;
1159 smallConfig.frameCount *= 4;
1168 bigConfig.frameCount = 10;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
IvfWriter.java 61 mOutputFile.seek(HEADER_END); // Skip the header for now, as framecount is unknown
104 * @param frameCount total number of frames file contains
110 private static byte[] makeIvfHeader(int frameCount, int width, int height, int scale, int rate){
126 lay32Bits(ivfHeader, 24, frameCount);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
MockSpdyPeer.java 40 private int frameCount = 0;
63 frameCount++;
67 public int frameCount() {
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++) {

Completed in 649 milliseconds

1 2 3 4 5