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

  /system/core/include/utils/
StopWatch.h 54 lap_t mLaps[8];
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 96 ArrayList<Lap> mLaps = new ArrayList<Lap>();
128 if (mLaps.size() == 0 || position >= mLaps.size()) {
141 count.setText(String.format(mLapFormat, mLaps.size() - position).toUpperCase());
156 return mLaps.size();
161 if (mLaps.size() == 0 || position >= mLaps.size()) {
164 return mLaps.get(position);
169 mLapFormat = mLapFormatSet[mLaps.size() < 10 ? 0 : 1];
200 mLaps.add(0, l)
    [all...]

Completed in 79 milliseconds