Home | History | Annotate | Download | only in stopwatch

Lines Matching full:curtime

237                 long curTime = Utils.getTimeNow();
238 mAccumulatedTime += (curTime - mStartTime);
626 long curTime = time - mStartTime + mAccumulatedTime;
629 Lap firstLap = new Lap(curTime, curTime);
631 mLapsAdapter.addLap(new Lap(0, curTime));
632 mTime.setIntervalTime(curTime);
635 long lapTime = curTime - ((Lap) mLapsAdapter.getItem(1)).mTotalTime;
637 ((Lap)mLapsAdapter.getItem(0)).mTotalTime = curTime;
679 long curTime = Utils.getTimeNow();
680 long totalTime = mAccumulatedTime + (curTime - mStartTime);