Searched defs:hours (Results 1 - 1 of 1) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DCountingTimerView.java96 * Class to measure and draw the digit pairs of hours, minutes, seconds or hundredths. Digits
97 * may have an optional label. for hours, minutes and seconds, this label trails the digits
316 * Update the time to display. Separates that time into the hours, minutes, seconds and
333 long hundreds, seconds, minutes, hours;
338 hours = minutes / 60;
339 minutes = minutes - hours * 60;
340 if (hours > 999) {
341 hours = 0;
343 // The time can be between 0 and -1 seconds, but the "truncated" equivalent time of hours
347 if (hours
507 getTimeStringForAccessibility(int hours, int minutes, int seconds, boolean showNeg, Resources r) argument
[all...]

Completed in 94 milliseconds