Searched refs:hour (Results 126 - 150 of 245) sorted by relevance

12345678910

/external/chromium_org/chrome/browser/resources/translate_internals/
H A Dtranslate_internals.js283 var hour = date.getHours();
290 var hourStr = padWithZeros(hour, 2);
/external/chromium_org/v8/src/
H A Ddateparser.h21 // [3]: hour
295 void SetAbsoluteHour(int hour) { hour_ = hour; }
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h122 * @hour: Hour (0 .. 23)
132 int os_mktime(int year, int month, int day, int hour, int min, int sec,
138 int hour; /* 0..23 */ member in struct:os_tm
/external/wpa_supplicant_8/src/utils/
H A Dos.h122 * @hour: Hour (0 .. 23)
132 int os_mktime(int year, int month, int day, int hour, int min, int sec,
138 int hour; /* 0..23 */ member in struct:os_tm
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h122 * @hour: Hour (0 .. 23)
132 int os_mktime(int year, int month, int day, int hour, int min, int sec,
138 int hour; /* 0..23 */ member in struct:os_tm
/external/chromium_org/base/third_party/nspr/
H A Dprtime.cc146 gregorian_date.hour = exploded->tm_hour;
536 int hour = -1; local
792 if (hour >= 0 && min >= 0) /* already got it */
870 /* If we made it here, we've parsed hour and min,
889 hour = tmp_hour;
1140 if (hour != -1)
1141 result->tm_hour = hour;
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemastypes.c65 unsigned int hour :5; /* 0 <= hour <= 23 */ member in struct:_xmlSchemaValDate
79 double sec; /* sec stores min and hour also */
1139 (VALID_HOUR(dt->hour) && VALID_MIN(dt->min) && \
1164 dt->value.date.day,dt->value.date.hour,dt->value.date.min, \
1359 dt->hour = value;
3811 carry += d->hour;
3812 r->hour = (unsigned int) MODULO(carry, 24);
3869 if ((r->hour) || (r->min) || (r->sec))
3966 ((double)((dt->value.date.hour * SECS_PER_HOU
5840 unsigned long mon, day, hour = 0, min = 0; local
[all...]
/external/libxml2/
H A Dxmlschemastypes.c65 unsigned int hour :5; /* 0 <= hour <= 23 */ member in struct:_xmlSchemaValDate
79 double sec; /* sec stores min and hour also */
1139 (VALID_HOUR(dt->hour) && VALID_MIN(dt->min) && \
1164 dt->value.date.day,dt->value.date.hour,dt->value.date.min, \
1359 dt->hour = value;
3818 carry += d->hour;
3819 r->hour = (unsigned int) MODULO(carry, 24);
3876 if ((r->hour) || (r->min) || (r->sec))
3973 ((double)((dt->value.date.hour * SECS_PER_HOU
5847 unsigned long mon, day, hour = 0, min = 0; local
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dvtzone.cpp200 int32_t hour = t / U_MILLIS_PER_HOUR; local
206 appendAsciiDigits(hour, 2, str);
230 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local
255 hour = parseAsciiDigits(str, 9, 2, status);
266 hour < 0 || hour >= 24 || min < 0 || min >= 60 || sec < 0 || sec >= 60) {
279 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND);
295 int32_t sign = 0, hour = 0, min = 0, sec = 0; local
313 hour = parseAsciiDigits(str, 1, 2, status);
328 int32_t millis = sign * ((hour * 6
343 int32_t hour, min, sec; local
[all...]
H A Dgregocal.cpp129 * (*) In units of one-hour
236 int32_t hour, int32_t minute, UErrorCode& status)
246 set(UCAL_HOUR_OF_DAY, hour);
253 int32_t hour, int32_t minute, int32_t second,
264 set(UCAL_HOUR_OF_DAY, hour);
235 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, UErrorCode& status) argument
252 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second, UErrorCode& status) argument
/external/icu/icu4c/source/i18n/
H A Dvtzone.cpp200 int32_t hour = t / U_MILLIS_PER_HOUR; local
206 appendAsciiDigits(hour, 2, str);
230 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local
255 hour = parseAsciiDigits(str, 9, 2, status);
266 hour < 0 || hour >= 24 || min < 0 || min >= 60 || sec < 0 || sec >= 60) {
279 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND);
295 int32_t sign = 0, hour = 0, min = 0, sec = 0; local
313 hour = parseAsciiDigits(str, 1, 2, status);
328 int32_t millis = sign * ((hour * 6
343 int32_t hour, min, sec; local
[all...]
H A Dgregocal.cpp129 * (*) In units of one-hour
236 int32_t hour, int32_t minute, UErrorCode& status)
246 set(UCAL_HOUR_OF_DAY, hour);
253 int32_t hour, int32_t minute, int32_t second,
264 set(UCAL_HOUR_OF_DAY, hour);
235 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, UErrorCode& status) argument
252 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second, UErrorCode& status) argument
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeFieldElements.cpp68 setValueAsInteger(date.hour() >= 12 ? 1 : 0);
129 DEFINE_STATIC_LOCAL(AtomicString, hourPsuedoId, ("-webkit-datetime-edit-hour-field", AtomicString::ConstructFromLiteral));
135 setValueAsInteger(date.hour());
145 const int hour12 = dateTimeFieldsState.hour();
/external/qemu/distrib/libpng-1.2.46/
H A Dpng.c690 ptime->year, ptime->hour % 24, ptime->minute % 60,
701 ptime->year, ptime->hour % 24, ptime->minute % 60,
709 ptime->year, ptime->hour % 24, ptime->minute % 60,
/external/stlport/src/
H A Dtime_facets.cpp203 #define __hour12(hour) \
204 (((hour) % 12 == 0) ? (12) : (hour) % 12)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcalcasts.cpp66 checkField(cal, UCAL_HOUR, cases[i].hour,status);
78 cal->set(UCAL_HOUR, cases[i].hour);
/external/icu/icu4c/source/test/intltest/
H A Dcalcasts.cpp66 checkField(cal, UCAL_HOUR, cases[i].hour,status);
78 cal->set(UCAL_HOUR, cases[i].hour);
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_seed_store.cc90 exploded.hour = 0;
/external/chromium_org/chrome/browser/net/
H A Dquota_policy_channel_id_store_unittest.cc63 exploded_time.hour = 2;
/external/chromium_org/chrome/test/logging/win/
H A Dlog_file_printer.cc148 << std::setw(2) << time_exploded.hour
/external/chromium_org/net/ftp/
H A Dftp_directory_listing_parser_vms.cc184 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
H A DMHTMLArchive.cpp132 String dateString = makeRFC2822DateString(now.weekDay(), now.monthDay(), now.month(), now.fullYear(), now.hour(), now.minute(), now.second(), 0);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccaltst.c160 api = "ucal_openTimeZoneIDEnumerarion(UCAL_ZONE_TYPE_ANY, NULL, -5 hour)";
164 api = "ucal_openTimeZoneIDEnumerarion(UCAL_ZONE_TYPE_ANY, US, -5 hour)";
492 int32_t hour; local
607 hour=ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status);
626 if(hour == ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status))
628 else if((hour-8 + 1) != ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status)) /*because it is not in daylight savings time */
629 log_err("FAIL: Error setTimeZone doesn't change the represented time correctly with 8 hour offset\n");
898 int32_t hour; member in struct:__anon12184
1083 ucal_setDateTime(cal, itemPtr->year, itemPtr->month, itemPtr->day, itemPtr->hour, 0, 0, &status);
1088 } else if ( hr != itemPtr->hour ) {
1460 verify2(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec, int32_t am_pm) argument
1659 int32_t hour; member in struct:__anon12185
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccaltst.c161 api = "ucal_openTimeZoneIDEnumerarion(UCAL_ZONE_TYPE_ANY, NULL, -5 hour)";
165 api = "ucal_openTimeZoneIDEnumerarion(UCAL_ZONE_TYPE_ANY, US, -5 hour)";
493 int32_t hour; local
608 hour=ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status);
627 if(hour == ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status))
629 else if((hour-8 + 1) != ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status)) /*because it is not in daylight savings time */
630 log_err("FAIL: Error setTimeZone doesn't change the represented time correctly with 8 hour offset\n");
899 int32_t hour; member in struct:__anon21983
1084 ucal_setDateTime(cal, itemPtr->year, itemPtr->month, itemPtr->day, itemPtr->hour, 0, 0, &status);
1089 } else if ( hr != itemPtr->hour ) {
1461 verify2(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec, int32_t am_pm) argument
1663 int32_t hour; member in struct:__anon21984
[all...]
/external/chromium_org/chrome/browser/history/
H A Dvisit_filter_unittest.cc103 et.hour = 0;
123 et.hour = 0;

Completed in 739 milliseconds

12345678910