Home
last modified time | relevance | path

Searched refs:lapTime (Results 1 – 5 of 5) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DLapsAdapter.kt76 val lapTime: Long in onBindViewHolder() constant
84 lapTime = lap.lapTime in onBindViewHolder()
90 lapTime = DataModel.dataModel.getCurrentLapTime(totalTime) in onBindViewHolder()
95 viewHolder.lapTime.setText(formatLapTime(lapTime, true)) in onBindViewHolder()
122 val lapTime = DataModel.dataModel.getCurrentLapTime(totalTime) in updateCurrentLap() constant
124 holder.lapTime.setText(formatLapTime(lapTime, false)) in updateCurrentLap()
190 val lapTime = lap.lapTime constant
191 builder.append(formatTime(lapTime, lapTime, " "))
198 val lapTime = DataModel.dataModel.getCurrentLapTime(totalTime) constant
199 builder.append(formatTime(lapTime, lapTime, " "))
[all …]
DStopwatchCircleView.kt125 val firstLapTime = firstLap.lapTime in onDraw()
147 val markerAngle = priorLap.lapTime.toFloat() / firstLapTime.toFloat() * 360 in onDraw()
/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchModel.kt139 val lapTime = totalTime - prevAccumulatedTime in addLap() constant
141 val lap = Lap(lapNumber, lapTime, totalTime) in addLap()
182 maxLapTime = max(maxLapTime, lap.lapTime) in canAddMoreLaps()
DStopwatchDAO.kt101 val lapTime = accumulatedTime - prevAccumulatedTime in getLaps() constant
104 laps.add(Lap(lapNumber, lapTime, accumulatedTime)) in getLaps()
DLap.kt26 val lapTime: Long, constant in com.android.deskclock.data.Lap