Home | History | Annotate | Download | only in incallui

Lines Matching defs:hours

13      * "3 hours 1 second". Returns the hours, minutes and seconds in that order if they exist.
16 int hours = 0;
21 hours = elapsedSeconds / 3600;
22 elapsedSeconds -= hours * 3600;
33 if (hours > 0) {
34 duration.append(res.getQuantityString(R.plurals.duration_hours, hours, hours));
37 if (hours > 0) {
43 if (hours > 0 || minutes > 0) {