HomeSort by relevance Sort by last modified time
    Searched refs:laps (Results 1 - 3 of 3) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
Stopwatches.java 61 public static String buildShareResults(Context context, String time, long[] laps) {
65 int lapsNum = laps == null? 0 : laps.length;
73 b.append(getTimeText(context, laps[lapsNum-i], i));
79 public static String buildShareResults(Context context, long time, long[] laps) {
80 return buildShareResults(context, getTimeText(context, time, NO_LAP_NUMBER), laps);
StopwatchFragment.java 188 long [] laps = new long[size]; local
190 laps[i] = mLaps.get(i).mTotalTime;
192 return laps;
196 public void setLapTimes(long [] laps) {
197 if (laps == null || laps.length == 0) {
201 int size = laps.length;
204 mLaps.add(new Lap (laps[i], 0));
208 totalTime += laps[i];
221 private static final String LAPS_KEY = "laps";
697 long [] laps = mLapsAdapter.getLapTimes(); local
731 long[] laps = new long[numLaps]; local
    [all...]
StopwatchService.java 190 // Show the laps if applicable.
310 long[] laps = new long[numLaps]; local
318 laps[numLaps - lap_i - 1] = lap - prevLapElapsedTime;
321 return laps;
387 long laps[] = readLapsFromPrefs(); local
388 int numLaps = laps.length;
389 long lapTime = laps[1];

Completed in 76 milliseconds