Home
last modified time | relevance | path

Searched refs:getLaps (Results 1 – 6 of 6) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DLapsAdapter.java76 final int lapCount = getLaps().size(); in getItemCount()
94 final Lap lap = position == 0 ? null : getLaps().get(position - 1); in onBindViewHolder()
104 lapNumber = getLaps().size() + 1; in onBindViewHolder()
110 viewHolder.lapNumber.setText(formatLapNumber(getLaps().size() + 1, lapNumber)); in onBindViewHolder()
115 final List<Lap> laps = getLaps(); in getItemId()
192 final List<Lap> laps = getLaps(); in getShareText()
337 private List<Lap> getLaps() { in getLaps() method in LapsAdapter
338 return DataModel.getDataModel().getLaps(); in getLaps()
DStopwatchCircleView.java113 final List<Lap> laps = getLaps(); in onDraw()
174 private List<Lap> getLaps() { in getLaps() method in StopwatchCircleView
175 return DataModel.getDataModel().getLaps(); in getLaps()
/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchModel.java131 List<Lap> getLaps() { in getLaps() method in StopwatchModel
181 return getLaps().size() < 98; in canAddMoreLaps()
190 final List<Lap> laps = getLaps(); in getLongestLapTime()
193 for (Lap lap : getLaps()) { in getLongestLapTime()
215 final Lap previousLap = getLaps().get(0); in getCurrentLapTime()
240 mLaps = StopwatchDAO.getLaps(mPrefs); in getMutableLaps()
DDataModel.java793 public List<Lap> getLaps() { in getLaps() method in DataModel
795 return mStopwatchModel.getLaps(); in getLaps()
DStopwatchDAO.java98 static List<Lap> getLaps(SharedPreferences prefs) { in getLaps() method in StopwatchDAO
DStopwatchNotificationBuilder.java95 final int lapCount = DataModel.getDataModel().getLaps().size(); in build()