Searched refs:frameCount (Results 1 - 25 of 99) sorted by relevance

1234

/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/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/skia/src/animator/
H A DSkOperandInterpolator.h20 SkOperandInterpolator(int elemCount, int frameCount, SkDisplayTypes type);
23 void reset(int elemCount, int frameCount, SkDisplayTypes type);
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/skia/src/animator/
H A DSkOperandInterpolator.h20 SkOperandInterpolator(int elemCount, int frameCount, SkDisplayTypes type);
23 void reset(int elemCount, int frameCount, SkDisplayTypes type);
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/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoderTest.cpp73 size_t frameCount = decoder->frameCount(); local
74 for (size_t i = 0; i < frameCount; ++i) {
88 size_t frameCount = baselineHashes.size(); local
95 for (size_t j = i; j < frameCount; j += skippingStep) {
105 for (size_t i = frameCount; i; --i) {
120 size_t frameCount = baselineHashes.size(); local
124 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) {
128 for (size_t j = 0; j < frameCount; j += skippingStep) {
161 EXPECT_EQ(2u, decoder->frameCount());
196 size_t frameCount = 0; local
221 size_t frameCount = 0; local
403 unsigned frameCount = decoder->frameCount(); local
436 size_t frameCount = baselineHashes.size(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebImageSkia.cpp65 const size_t frameCount = decoder->frameCount(); local
68 for (size_t i = 0; i < frameCount; ++i) {
112 const size_t frameCount = decoder->frameCount(); local
116 for (size_t i = 0; i < std::min(frameCount, maxFrameCount); ++i) {
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoderTest.cpp75 size_t frameCount = decoder->frameCount(); local
76 for (size_t i = 0; i < frameCount; ++i) {
90 size_t frameCount = baselineHashes.size(); local
97 for (size_t j = i; j < frameCount; j += skippingStep) {
107 for (size_t i = frameCount; i; --i) {
122 size_t frameCount = baselineHashes.size(); local
126 for (size_t clearExceptFrame = 0; clearExceptFrame < frameCount; ++clearExceptFrame) {
130 for (size_t j = 0; j < frameCount; j += skippingStep) {
147 size_t frameCount local
167 size_t frameCount = 0; local
259 size_t frameCount = decoderA->frameCount(); local
434 size_t frameCount = 8; local
572 size_t frameCount = decoder->frameCount(); local
603 size_t frameCount = baselineHashes.size(); local
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-259300.js38 for (var i = 0; i < exec_state.frameCount(); i++) {
H A Dregress-109195.js32 for (var i = 0, n = exec_state.frameCount(); i < n; i++) {
H A Dregress-crbug-107996.js39 for (var i = 0; i < exec_state.frameCount(); i++) {
H A Dregress-frame-details-null-receiver.js35 for (var i = 0; i < exec_state.frameCount(); i++) {
/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/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DBitmapImageTest.cpp71 size_t frameCount() { return m_image->frameCount(); } function in class:WebCore::BitmapImageTest
84 size_t frameCount = m_image->frameCount(); local
85 for (size_t i = 0; i < frameCount; ++i)
128 size_t frame = frameCount() / 2;
154 for (size_t i = 0; i < frameCount(); ++i) {
H A DBitmapImage.cpp141 size_t numFrames = frameCount();
312 size_t BitmapImage::frameCount() function in class:WebCore::BitmapImage
315 m_frameCount = m_source.frameCount();
316 // If decoder is not initialized yet, m_source.frameCount() returns 0.
336 if (index >= frameCount())
405 return size().width() != 1 || size().height() != 1 || frameCount() > 1;
431 if (m_frameTimer || !shouldAnimate() || frameCount() <= 1)
440 size_t nextFrame = (m_currentFrame + 1) % frameCount();
448 if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1))
486 for (size_t frameAfterNext = (nextFrame + 1) % frameCount(); frameIsCompleteAtInde
[all...]
/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/chromium_org/third_party/skia/include/utils/
H A DSkInterpolator.h26 void reset(int elemCount, int frameCount);
90 SkInterpolator(int elemCount, int frameCount);
91 void reset(int elemCount, int frameCount);
/external/skia/include/utils/
H A DSkInterpolator.h26 void reset(int elemCount, int frameCount);
90 SkInterpolator(int elemCount, int frameCount);
91 void reset(int elemCount, int frameCount);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DFrameCountTest.java76 int frameCount = reply.getNextValueAsInt();
77 logWriter.println("\tframe count = " + frameCount);
79 if (frameCount != expectedCount) {
80 printErrorAndFail("Unexpected frame count = " + frameCount
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-step-stub-callfunction.js38 if (exec_state.frameCount() > 1) {
H A Ddebug-stepin-constructor.js38 if (exec_state.frameCount() > 1) {
H A Ddebug-stepnext-do-while.js50 if (exec_state.frameCount() > 1) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebImageDecoder.cpp92 size_t WebImageDecoder::frameCount() const function in class:blink::WebImageDecoder
95 return m_private->frameCount();

Completed in 820 milliseconds

1234