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

/external/icu4c/i18n/
H A Dutmscale.c19 #define hours (minutes * 60) macro
20 #define days (hours * 24)
/external/v8/test/mjsunit/
H A Dto_number_order.js54 var hours = { valueOf: function() { x += 4; return 13; } };
60 new Date(year, month, date, hours, minutes, seconds, ms);
65 Date(year, month, date, hours, minutes, seconds, ms);
69 Date.UTC(year, month, date, hours, minutes, seconds, ms);
94 new Date().setHours(hours, minutes, seconds, ms);
98 new Date().setUTCHours(hours, minutes, seconds, ms);
102 new Date().setDate(date, hours, minutes, seconds, ms);
106 new Date().setUTCDate(date, hours, minutes, seconds, ms);
110 new Date().setMonth(month, date, hours, minutes, seconds, ms);
114 new Date().setUTCMonth(month, date, hours, minute
[all...]
/external/dropbear/
H A Dprogressmeter.c118 int hours, minutes, seconds; local
197 hours = seconds / 3600;
198 seconds -= hours * 3600;
202 if (hours != 0)
204 "%d:%02d:%02d", hours, minutes, seconds);
/external/opencore/baselibs/gen_data_structures/src/
H A Drtsp_time_formats.h43 // The basic format is HH:MM:SS where HH = hours, MM = minutes, SS = seconds
50 uint8 hours; member in struct:SmpteTimeFormat
59 // hours+minutes+secs (including fractional seconds). Unlike the SMPTE time format,
60 // the number of digits in the hours representation is arbitrary. When in the seconds-only
76 uint32 hours; member in struct:NptHHMMSSFormat
114 uint8 hours; member in struct:AbsTimeFormat
202 startTime = MILLISEC_IN_HOUR * npt_start.npt_hhmmss.hours +
231 stopTime = MILLISEC_IN_HOUR * npt_end.npt_hhmmss.hours +
251 startTime = MILLISEC_IN_HOUR * smpte_start.hours +
261 stopTime = MILLISEC_IN_HOUR * smpte_end.hours
[all...]
/external/quake/quake/src/WinQuake/
H A Dhost_cmd.cpp68 int hours = 0; local
101 hours = minutes / 60;
102 if (hours)
103 minutes -= (hours * 60);
106 hours = 0;
107 print ("#%-2u %-16.16s %3i %2i:%02i:%02i\n", j+1, client->name, (int)client->edict->u.v.frags, hours, minutes, seconds);
/external/webkit/WebCore/platform/gtk/
H A DLocalizedStringsGtk.cpp465 int hours = seconds / (60 * 60); local
470 GOwnPtr<gchar> string(g_strdup_printf("%d days %d hours %d minutes %d seconds", days, hours, minutes, seconds));
474 if (hours) {
475 GOwnPtr<gchar> string(g_strdup_printf("%d hours %d minutes %d seconds", hours, minutes, seconds));
/external/webkit/WebCore/platform/qt/
H A DLocalizations.cpp465 int hours = seconds / (60 * 60); local
470 return QCoreApplication::translate("QWebPage", "%1 days %2 hours %3 minutes %4 seconds", "Media time description").arg(days).arg(hours).arg(minutes).arg(seconds);
473 if (hours) {
474 return QCoreApplication::translate("QWebPage", "%1 hours %2 minutes %3 seconds", "Media time description").arg(hours).arg(minutes).arg(seconds);
/external/webkit/WebCore/rendering/
H A DRenderTheme.cpp449 int hours = seconds / (60 * 60); local
452 if (hours) {
453 if (hours > 9)
454 return String::format("%s%02d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
456 return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
/external/webkit/WebKit/win/
H A DFullscreenVideoController.cpp385 int hours = seconds / (60 * 60); local
389 if (hours) {
390 if (hours > 9)
391 return String::format("%s%02d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
392 return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
H A DWebCoreLocalizedStrings.cpp216 int hours = seconds / (60 * 60); local
221 static RetainPtr<CFStringRef> format(AdoptCF, UI_STRING("%1$d days %2$d hours %3$d minutes %4$d seconds", "accessibility help text for media controller time value >= 1 day"));
222 RetainPtr<CFStringRef> result(AdoptCF, CFStringCreateWithFormat(0, 0, format.get(), days, hours, minutes, seconds));
226 if (hours) {
227 static RetainPtr<CFStringRef> format(AdoptCF, UI_STRING("%1$d hours %2$d minutes %3$d seconds", "accessibility help text for media controller time value >= 60 minutes"));
228 RetainPtr<CFStringRef> result(AdoptCF, CFStringCreateWithFormat(0, 0, format.get(), hours, minutes, seconds));
/external/icu4c/test/intltest/
H A Ddtfmttst.cpp101 int32_t offset, hours, minutes, seconds; local
140 hours = offset/3600000;
143 UnicodeString dstOffset = (UnicodeString)"" + sign + (hours < 10 ? "0" : "") +
144 (int32_t)hours + ":" + (minutes < 10 ? "0" : "") + (int32_t)minutes;
/external/icu4c/tools/tzcode/
H A Dzic.c1082 warning(_("values over 24 hours not handled by pre-2007 versions of zic"));
1930 register int hours; local
1943 hours = offset;
1944 if (hours >= HOURSPERDAY) {
1948 (void) sprintf(end(result), "%d", hours); local
/external/kernel-headers/original/linux/
H A Dvideodev2.h443 __u8 hours; member in struct:v4l2_timecode
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 329 milliseconds