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

  /libcore/ojluni/src/main/java/java/time/
ZoneOffset.java 158 private final int totalSeconds;
312 int totalSeconds = totalSeconds(hours, minutes, seconds);
313 return ofTotalSeconds(totalSeconds);
393 private static int totalSeconds(int hours, int minutes, int seconds) {
403 * @param totalSeconds the total time-zone offset in seconds, from -64800 to +64800
407 public static ZoneOffset ofTotalSeconds(int totalSeconds) {
408 if (Math.abs(totalSeconds) > MAX_SECONDS) {
411 if (totalSeconds % (15 * SECONDS_PER_MINUTE) == 0) {
412 Integer totalSecs = totalSeconds;
    [all...]
  /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/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/TV/libs/
exoplayer_v2.jar 

Completed in 900 milliseconds