Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/gallery3d/app/
DTimeBar.java251 int totalSeconds = (int) millis / 1000; in stringForTime() local
252 int seconds = totalSeconds % 60; in stringForTime()
253 int minutes = (totalSeconds / 60) % 60; in stringForTime()
254 int hours = totalSeconds / 3600; in stringForTime()