HomeSort by relevance Sort by last modified time
    Searched refs:cycleTime (Results 1 - 3 of 3) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
SpriteAnimation.java 52 float cycleTime = animationTime;
54 cycleTime = animationTime % length;
57 if (cycleTime < length) {
62 int index = Arrays.binarySearch(mFrameStartTimes, cycleTime);
71 if (currentTime > cycleTime) {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 39 // For every cycleTime period, we dump the stack of the thread.
44 int cycleTime;
75 public synchronized void addWatchEntry(Thread thread, int cycleTime) {
78 e.cycleTime = cycleTime;
79 int firstDelay = 1 + mRandom.nextInt(cycleTime);
109 entry.wakeTime += entry.cycleTime;
  /packages/apps/Phone/src/com/android/phone/
DataUsageListener.java 160 long cycleTime = mEnd.getTimeInMillis() - mStart.getTimeInMillis();
164 int cycleThroughPercent = (cycleTime == 0) ? 0 : (int) ((currentTime * 100) / cycleTime);
167 cal.setTimeInMillis(cycleTime - currentTime);

Completed in 64 milliseconds