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

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DCountingTimerView.java311 long hundreds, seconds, minutes, hours;
316 hours = minutes / 60;
317 minutes = minutes - hours * 60;
318 if (hours > 999) {
319 hours = 0;
323 if (hours ==0 && minutes == 0 && seconds == 0) {
335 hours++;
346 if (hours >= 10) {
348 mHours = String.format(format, hours);
349 } else if (hours >
467 getTimeStringForAccessibility(int hours, int minutes, int seconds, boolean showNeg, Resources r) argument
[all...]

Completed in 58 milliseconds