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

/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DTrimControllerOverlay.java84 public void setTimes(int currentTime, int totalTime, int trimStartTime, int trimEndTime) { argument
85 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.java185 public void setTimes(int currentTime, int totalTime, argument
187 mTimeBar.setTime(currentTime, totalTime, trimStartTime, trimEndTime);
/packages/apps/Nfc/src/com/android/nfc/
H A DSendUi.java655 public void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime) { argument
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchFragment.java149 TextView totalTime = (TextView)lapInfo.findViewById(R.id.lap_total);
151 totalTime.setText(Stopwatches.formatTimeText(lap.mTotalTime, mFormats[mTotalIndex]));
235 long totalTime = 0;
237 totalTime += laps[i];
238 mLaps.get(i).mTotalTime = totalTime;
817 private void updateCurrentLap(long totalTime) { argument
821 curLap.mLapTime = totalTime - mLapsAdapter.getItem(1).mTotalTime;
822 curLap.mTotalTime = totalTime;
891 long totalTime = mAccumulatedTime + (curTime - mStartTime);
893 mTimeText.setTime(totalTime, tru
[all...]

Completed in 211 milliseconds