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

  /hardware/bsp/intel/peripheral/libupm/examples/python/
mq303a.py 57 totalSeconds = (30 * iteration)
59 print totalSeconds, "seconds have passed"
  /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;
  /frameworks/support/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 420 int totalSeconds = timeMs / 1000;
422 int seconds = totalSeconds % 60;
423 int minutes = (totalSeconds / 60) % 60;
424 int hours = totalSeconds / 3600;
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerSetupView.java 198 final int totalSeconds = hoursInSeconds + minutesInSeconds + seconds;
200 return totalSeconds * DateUtils.SECOND_IN_MILLIS;

Completed in 456 milliseconds