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

  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TimeBar.java 272 int totalSeconds = (int) millis / 1000;
273 int seconds = totalSeconds % 60;
274 int minutes = (totalSeconds / 60) % 60;
275 int hours = totalSeconds / 3600;
  /external/replicaisland/src/com/replica/replicaisland/
GameOverActivity.java 101 int totalSeconds = (int)(seconds - (totalMinuteSeconds + totalHourSeconds));
103 value = totalHours + ":" + totalMinutes + ":" + totalSeconds;
  /frameworks/base/core/java/android/widget/
MediaController.java 397 int totalSeconds = timeMs / 1000;
399 int seconds = totalSeconds % 60;
400 int minutes = (totalSeconds / 60) % 60;
401 int hours = totalSeconds / 3600;

Completed in 384 milliseconds