Home | History | Annotate | Download | only in rendering

Lines Matching refs:hours

494     int hours = seconds / (60 * 60);
497 if (hours) {
498 if (hours > 9)
499 return String::format("%s%02d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
501 return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);