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

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchService.java76 long lapTimeElapsed = actionTime - mStartTime + mElapsedTime;
77 writeSharedPrefsLap(lapTimeElapsed, updateCircle);
335 private void writeToSharedPrefs(Long startTime, Long lapTimeElapsed, Long elapsedTime, argument
344 if (lapTimeElapsed != null) {
350 editor.putLong(Stopwatches.PREF_LAP_TIME + Integer.toString(numLaps), lapTimeElapsed);
352 editor.putLong(Stopwatches.PREF_LAP_TIME + Integer.toString(numLaps), lapTimeElapsed);
391 private void writeSharedPrefsLap(long lapTimeElapsed, boolean updateCircle) { argument
392 writeToSharedPrefs(null, lapTimeElapsed, null, null, updateCircle);

Completed in 53 milliseconds