Home | History | Annotate | Download | only in incallui

Lines Matching refs:hours

15      * "3 hours 1 second". Returns the hours, minutes and seconds in that order if they exist.
18 int hours = 0;
23 hours = elapsedSeconds / 3600;
24 elapsedSeconds -= hours * 3600;
35 if (hours > 0) {
36 duration.append(res.getQuantityString(R.plurals.duration_hours, hours, hours));
39 if (hours > 0) {
45 if (hours > 0 || minutes > 0) {