Home | History | Annotate | Download | only in stopwatch

Lines Matching defs:curTime

265                 long curTime = Utils.getTimeNow();
266 mAccumulatedTime += (curTime - mStartTime);
575 final long curTime = time - mStartTime + mAccumulatedTime;
579 Lap firstLap = new Lap(curTime, curTime);
582 mLapsAdapter.addLap(new Lap(0, curTime));
584 mTime.setIntervalTime(curTime);
588 final long lapTime = curTime - mLapsAdapter.getItem(1).mTotalTime;
590 mLapsAdapter.getItem(0).mTotalTime = curTime;
592 mLapsAdapter.addLap(new Lap(0, curTime));
694 long curTime = Utils.getTimeNow();
695 long totalTime = mAccumulatedTime + (curTime - mStartTime);