hours             283 Source/core/html/MediaFragmentURIParser.cpp         mode = hours;
hours             297 Source/core/html/MediaFragmentURIParser.cpp     if (mode == hours || (offset < length && timeString[offset] == ':')) {
hours             416 Source/core/rendering/RenderMediaControls.cpp     int hours = seconds / (60 * 60);
hours             425 Source/core/rendering/RenderMediaControls.cpp     if (durationHours || hours)
hours             426 Source/core/rendering/RenderMediaControls.cpp         return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
hours             458 Source/core/rendering/RenderTheme.cpp     int hours = seconds / (60 * 60);
hours             461 Source/core/rendering/RenderTheme.cpp     if (hours) {
hours             462 Source/core/rendering/RenderTheme.cpp         if (hours > 9)
hours             463 Source/core/rendering/RenderTheme.cpp             return String::format("%s%02d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
hours             465 Source/core/rendering/RenderTheme.cpp         return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
hours             857 Source/wtf/DateMath.cpp String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsigned month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset)
hours             869 Source/wtf/DateMath.cpp     stringBuilder.append(twoDigitStringFromNumber(hours));
hours              58 Source/wtf/DateMath.h WTF_EXPORT String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsigned month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset);