Home | History | Annotate | Download | only in format

Lines Matching refs:hours

524      * from seconds up to hours.
531 final int hours = (int) ((millis + 1800000) / HOUR_IN_MILLIS);
533 com.android.internal.R.plurals.duration_hours, hours, hours);
563 // Break the elapsed seconds into hours, minutes, and seconds.
564 long hours = 0;
568 hours = elapsedSeconds / 3600;
569 elapsedSeconds -= hours * 3600;
590 if (hours > 0) {
591 return f.format(sElapsedFormatHMMSS, hours, minutes, seconds).toString();