Home | History | Annotate | Download | only in stopwatch

Lines Matching defs:totalTime

149             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) {
821 curLap.mLapTime = totalTime - mLapsAdapter.getItem(1).mTotalTime;
822 curLap.mTotalTime = totalTime;
891 long totalTime = mAccumulatedTime + (curTime - mStartTime);
893 mTimeText.setTime(totalTime, true, true);
896 updateCurrentLap(totalTime);