/external/replicaisland/src/com/replica/replicaisland/ |
D | SpriteAnimation.java | 32 public SpriteAnimation(int animationId, int frameCount) { in SpriteAnimation() argument 34 mFrames = new FixedSizeArray<AnimationFrame>(frameCount); in SpriteAnimation() 35 mFrameStartTimes = new float[frameCount]; in SpriteAnimation() 47 final int frameCount = frames.getCount(); in getFrame() local 48 result = frames.get(frameCount - 1); in getFrame() 50 if (frameCount > 1) { in getFrame() 68 for (int x = 0; x < frameCount; x++) { in getFrame()
|
D | Utils.java | 87 public final static float framesToTime(int framesPerSecond, int frameCount) { in framesToTime() argument 88 return (1.0f / framesPerSecond) * frameCount; in framesToTime()
|
/external/deqp/modules/egl/ |
D | teglGLES2SharedRenderingPerfTests.cpp | 76 int frameCount; member 661 for (int frameNdx = 0; frameNdx < m_config.frameCount; frameNdx++) in render() 991 …red: : " << config.triangleCount * config.drawCallCount * config.frameCount * config.perThre… in logTestConfig() 994 …log << TestLog::Message << "Number of frames rendered with each context: " << config.frameCount … in logTestConfig() 1098 basicConfig.frameCount = 10; in init() 1147 smallConfig.frameCount = 10; in init() 1150 smallConfig.frameCount *= 4; in init() 1159 bigConfig.frameCount = 10; in init() 1162 bigConfig.frameCount *= 4; in init() 1195 smallConfig.frameCount = 10; in init() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
D | VisualSampleEntry.java | 68 private int frameCount = 1; field in VisualSampleEntry 95 return frameCount; in getFrameCount() 126 public void setFrameCount(int frameCount) { in setFrameCount() argument 127 this.frameCount = frameCount; in setFrameCount() 150 frameCount = IsoTypeReader.readUInt16(content); in _parseDetails()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | JDWPStackTraceBaseTest.java | 99 int frameCount = jdwpGetFrameCount(threadID); in findFrameInfo() local 100 logWriter.println("=> frames count = " + frameCount); in findFrameInfo() 103 FrameInfo[] frameIDs = jdwpGetFrames(threadID, 0, frameCount); in findFrameInfo() 104 if (frameIDs.length != frameCount) { in findFrameInfo() 107 + frameCount); in findFrameInfo() 112 for (int i = 0; i < frameCount; i++) { in findFrameInfo()
|
D | ThisObjectTest.java | 88 int frameCount = jdwpGetFrameCount(mainThread); in testThisObjectTest001() local 89 logWriter.println("==> frames count = " + frameCount); in testThisObjectTest001() 92 FrameInfo[] frameIDs = jdwpGetFrames(mainThread, 0, frameCount); in testThisObjectTest001() 94 assertEquals("Invalid number of frames,", frameCount, frameIDs.length); in testThisObjectTest001() 97 for (int i = 0; i < frameCount; i++) { in testThisObjectTest001()
|
/external/skia/src/utils/ |
D | SkInterpolator.cpp | 26 void SkInterpolatorBase::reset(int elemCount, int frameCount) { in reset() argument 29 fFrameCount = SkToS16(frameCount); in reset() 136 SkInterpolator::SkInterpolator(int elemCount, int frameCount) { in SkInterpolator() argument 138 this->reset(elemCount, frameCount); in SkInterpolator() 141 void SkInterpolator::reset(int elemCount, int frameCount) { in reset() argument 142 INHERITED::reset(elemCount, frameCount); in reset() 144 sizeof(SkTimeCode)) * frameCount); in reset() 146 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount); in reset()
|
/external/skia/src/animator/ |
D | SkOperandIterpolator.cpp | 16 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount, in SkOperandInterpolator() argument 19 this->reset(elemCount, frameCount, type); in SkOperandInterpolator() 22 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type) in reset() argument 26 INHERITED::reset(elemCount, frameCount); in reset() 28 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount); in reset() 30 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount); in reset()
|
D | SkOperandInterpolator.h | 20 SkOperandInterpolator(int elemCount, int frameCount, SkDisplayTypes type); 23 void reset(int elemCount, int frameCount, SkDisplayTypes type);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | FrameCountTest.java | 76 int frameCount = reply.getNextValueAsInt(); in testFrameCount001() local 77 logWriter.println("\tframe count = " + frameCount); in testFrameCount001() 79 if (frameCount != expectedCount) { in testFrameCount001() 80 printErrorAndFail("Unexpected frame count = " + frameCount in testFrameCount001()
|
D | OwnedMonitorsStackDepthInfoTest.java | 90 int frameCount = jdwpGetFrameCount(testedThreadID); in testOwnedMonitorsStackDepthInfo() local 92 int[] expectedStackDepth = new int[] { frameCount - 4, frameCount - 4, frameCount - 2 }; in testOwnedMonitorsStackDepthInfo()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
D | MockSpdyPeer.java | 43 private int frameCount = 0; field in MockSpdyPeer 66 frameCount++; in acceptFrame() 75 public int frameCount() { in frameCount() method in MockSpdyPeer 76 return frameCount; in frameCount() 80 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), false)); in sendFrame() 89 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), false)); in sendFrame() 154 for (int i = 0; i < frameCount; i++) { in readAndWriteFrames()
|
/external/skia/include/utils/ |
D | SkInterpolator.h | 26 void reset(int elemCount, int frameCount); 90 SkInterpolator(int elemCount, int frameCount); 91 void reset(int elemCount, int frameCount);
|
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/ |
D | GifHeader.java | 15 int frameCount = 0; field in GifHeader 48 return frameCount; in getNumFrames()
|
D | GifDecoder.java | 187 framePointer = (framePointer + 1) % header.frameCount; in advance() 198 if ((n >= 0) && (n < header.frameCount)) { in getDelay() 208 if (header.frameCount <= 0 || framePointer < 0) { in getNextDelay() 221 return header.frameCount; in getFrameCount() 252 if (header.frameCount <= 0 || framePointer < 0) { in getNextFrame() 254 …Log.d(TAG, "unable to decode frame, frameCount=" + header.frameCount + " framePointer=" + framePoi… in getNextFrame()
|
/external/proguard/src/proguard/preverify/ |
D | CodePreverifier.java | 175 int frameCount = stackMapFrameList.size(); in visitCodeAttribute0() local 192 if (frameCount != originalFrameCount || in visitCodeAttribute0() 199 else if (frameCount != 0) in visitCodeAttribute0() 205 if (frameCount == 0) in visitCodeAttribute0() 218 FullFrame[] stackMapFrames = new FullFrame[frameCount]; in visitCodeAttribute0() 227 StackMapFrame[] stackMapFrames = new StackMapFrame[frameCount]; in visitCodeAttribute0()
|
/external/v8/test/mjsunit/es6/debug-promises/ |
D | reject-caught-by-default-reject-handler.js | 48 assertEquals(0, exec_state.frameCount()); 52 assertEquals(0, exec_state.frameCount());
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/ |
D | LazyThreadReference.java | 57 public int frameCount() throws IncompatibleThreadStateException { in frameCount() method in LazyThreadReference 58 return getValue().frameCount(); in frameCount()
|
/external/opencv3/modules/videostab/src/ |
D | stabilizer.cpp | 338 … int frameCount, const std::vector<Mat> &motions, const std::vector<Mat> &stabilizationMotions) in saveMotions() argument 341 for (int i = 0; i < frameCount - 1; ++i) in saveMotions() 349 for (int i = 0; i < frameCount; ++i) in saveMotions() 357 for (int i = 0; i < frameCount; ++i) in saveMotions()
|
/external/v8/test/mjsunit/ |
D | debug-evaluate-locals-optimized.js | 60 assertEquals(6, exec_state.frameCount()); 62 for (var i = 0; i < exec_state.frameCount(); i++) { 64 if (i < exec_state.frameCount() - 1) {
|
D | debug-evaluate-locals-optimized-double.js | 69 assertEquals(6, exec_state.frameCount()); 71 for (var i = 0; i < exec_state.frameCount(); i++) { 73 if (i < exec_state.frameCount() - 1) {
|
/external/v8/src/debug/ |
D | debug.js | 963 ExecutionState.prototype.frameCount = function() { method in ExecutionState 974 if (opt_index < 0 || opt_index >= this.frameCount()) { 982 if (i < 0 || i >= this.frameCount()) { 1136 if (this.exec_state_.frameCount() > 0) { 1806 var total_frames = this.exec_state_.frameCount(); 1862 if (this.exec_state_.frameCount() == 0) { 1869 if (index < 0 || this.exec_state_.frameCount() <= index) { 1885 if (frame_index < 0 || this.exec_state_.frameCount() <= frame_index) { 1915 if (this.exec_state_.frameCount() == 0) { 2087 if (this.exec_state_.frameCount() == 0) { [all …]
|
/external/v8/test/mjsunit/regress/ |
D | regress-514362.js | 18 for (var i = 0; i < exec_state.frameCount(); i++) exec_state.frame(i);
|
D | regress-crbug-259300.js | 38 for (var i = 0; i < exec_state.frameCount(); i++) {
|
D | regress-frame-details-null-receiver.js | 35 for (var i = 0; i < exec_state.frameCount(); i++) {
|