HomeSort by relevance Sort by last modified time
    Searched refs:totalSeconds (Results 1 - 7 of 7) 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;
  /frameworks/av/packages/MediaComponents/src/com/android/widget/
MediaControlView2Impl.java 687 int totalSeconds = timeMs / 1000;
689 int seconds = totalSeconds % 60;
690 int minutes = (totalSeconds / 60) % 60;
691 int hours = totalSeconds / 3600;
    [all...]
  /frameworks/support/media-widget/src/main/java/androidx/media/widget/
MediaControlView2.java 828 int totalSeconds = timeMs / 1000;
830 int seconds = totalSeconds % 60;
831 int minutes = (totalSeconds / 60) % 60;
832 int hours = totalSeconds / 3600;
    [all...]
  /prebuilts/sdk/current/
core.jar 

Completed in 530 milliseconds