Searched defs:totalTime (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DTrimControllerOverlay.java77 public void setTimes(int currentTime, int totalTime, int trimStartTime, int trimEndTime) { argument
78 mTimeBar.setTime(currentTime, totalTime, trimStartTime, trimEndTime);
H A DControllerOverlay.java54 void setTimes(int currentTime, int totalTime, argument
H A DTimeBar.java143 public void setTime(int currentTime, int totalTime, argument
145 if (mCurrentTime == currentTime && mTotalTime == totalTime) {
149 mTotalTime = totalTime;
H A DTrimTimeBar.java125 public void setTime(int currentTime, int totalTime, argument
127 if (mCurrentTime == currentTime && mTotalTime == totalTime
132 mTotalTime = totalTime;
H A DCommonControllerOverlay.java177 public void setTimes(int currentTime, int totalTime, argument
179 mTimeBar.setTime(currentTime, totalTime, trimStartTime, trimEndTime);
/packages/apps/Nfc/src/com/android/nfc/
H A DSendUi.java539 public void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime) { argument
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchFragment.java206 long totalTime = 0;
208 totalTime += laps[i];
209 mLaps.get(i).mTotalTime = totalTime;
638 private void updateCurrentLap(long totalTime) { argument
641 curLap.mLapTime = totalTime - ((Lap)mLapsAdapter.getItem(1)).mTotalTime;
642 curLap.mTotalTime = totalTime;
667 long totalTime = mAccumulatedTime + (curTime - mStartTime);
669 mTimeText.setTime(totalTime, true, true);
672 updateCurrentLap(totalTime);

Completed in 103 milliseconds