HomeSort by relevance Sort by last modified time
    Searched defs:lastFrame (Results 1 - 5 of 5) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 205 int lastFrame = times.length - 1;
206 if (time < 0 || lastFrame == 0) {
212 } else if (time >= times[lastFrame]) {
213 rotations.get(lastFrame, tempQ);
214 translations.get(lastFrame, tempV);
216 scales.get(lastFrame, tempS);
221 // use lastFrame so we never overflow the array
223 for (i = 0; i < lastFrame && times[i] < time; i++) {
SpatialTrack.java 78 int lastFrame = times.length - 1;
79 if (time < 0 || lastFrame == 0) {
87 } else if (time >= times[lastFrame]) {
89 rotations.get(lastFrame, tempQ);
91 translations.get(lastFrame, tempV);
93 scales.get(lastFrame, tempS);
98 // use lastFrame so we never overflow the array
99 for (int i = 0; i < lastFrame && times[i] < time; ++i) {
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 491 nsecs_t lastFrame = systemTime();
509 nsecs_t lastFrame = systemTime();
541 nsecs_t delay = frameDuration - (now - lastFrame);
542 //ALOGD("%lld, %lld", ns2ms(now - lastFrame), ns2ms(delay));
543 lastFrame = now;
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 53 milliseconds