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

  /frameworks/native/libs/utils/
StopWatch.cpp 48 const nsecs_t soFar = mLaps[i].soFar;
49 const nsecs_t thisLap = mLaps[i].thisLap;
66 mLaps[n].soFar = elapsed;
67 mLaps[n].thisLap = n ? (elapsed - mLaps[n-1].soFar) : elapsed;
  /frameworks/native/include/utils/
StopWatch.h 54 lap_t mLaps[8];
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 80 ArrayList<Lap> mLaps = new ArrayList<Lap>();
112 if (mLaps.size() == 0 || position >= mLaps.size()) {
124 lapTime.setText(Stopwatches.formatTimeText(mLaps.get(position).mLapTime,
126 toalTime.setText(Stopwatches.formatTimeText(mLaps.get(position).mTotalTime,
128 count.setText(String.format(mLapFormat, mLaps.size() - position).toUpperCase());
136 return mLaps.size();
141 if (mLaps.size() == 0 || position >= mLaps.size()) {
144 return mLaps.get(position)
    [all...]

Completed in 411 milliseconds