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

  /external/chromium_org/chrome/browser/resources/memory_internals/
memory_internals.js 151 * @param {number} totalSeconds The total amount of seconds.
154 function secondsToHMS(totalSeconds) {
155 totalSeconds = Number(totalSeconds);
156 var hour = Math.floor(totalSeconds / 3600);
157 var min = Math.floor(totalSeconds % 3600 / 60);
158 var sec = Math.floor(totalSeconds % 60);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TimeBar.java 251 int totalSeconds = (int) millis / 1000;
252 int seconds = totalSeconds % 60;
253 int minutes = (totalSeconds / 60) % 60;
254 int hours = totalSeconds / 3600;
  /external/replicaisland/src/com/replica/replicaisland/
GameOverActivity.java 101 int totalSeconds = (int)(seconds - (totalMinuteSeconds + totalHourSeconds));
103 value = totalHours + ":" + totalMinutes + ":" + totalSeconds;
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java 205 int totalSeconds = timeMs / 1000;
207 int seconds = totalSeconds % 60;
208 int minutes = (totalSeconds / 60) % 60;
209 int hours = totalSeconds / 3600;
  /frameworks/base/core/java/android/widget/
MediaController.java 413 int totalSeconds = timeMs / 1000;
415 int seconds = totalSeconds % 60;
416 int minutes = (totalSeconds / 60) % 60;
417 int hours = totalSeconds / 3600;

Completed in 125 milliseconds