/base/security/device_security_level/services/dfx/ |
H A D | dslm_hidumper.c | 63 dateTime.year, dateTime.mon, dateTime.day, dateTime.hour, dateTime.min, dateTime.sec, dateTime.msec); in GetTimeStringFromTimeStamp()
|
/kernel/linux/linux-5.10/include/xen/interface/ |
H A D | platform.h | 149 uint8_t hour; member
|
/kernel/linux/linux-6.6/include/xen/interface/ |
H A D | platform.h | 132 uint8_t hour; member
|
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | zip_internal.cc | 266 zip_info.tmz_date.tm_hour = file_time_parts.hour; in TimeToZipFileInfo()
|
/third_party/node/deps/zlib/google/ |
H A D | zip_internal.cc | 266 .tm_hour = static_cast<uInt>(file_time_parts.hour), in TimeToZipFileInfo()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | ucal.h | 335 * hour of the morning or afternoon. <code>HOUR</code> is used for the 12-hour 346 * hour of the day. <code>HOUR_OF_DAY</code> is used for the 24-hour clock. 355 * minute within the hour. 742 * 3,600,000 (one hour) or zero. 1137 * @param hour The desired hour of day. 1151 int32_t hour, 1765 * typically one hour [all...] |
H A D | tzfmt.h | 791 * Appends seconds field to the offset pattern with hour/minute 792 * Note: This code will be obsoleted once we add hour-minute-second pattern data in CLDR. 794 * @param result the output offset pattern including hour, minute and seconds fields 801 * Truncates minutes field to the offset pattern with hour/minute 802 * Note: This code will be obsoleted once we add hour pattern data in CLDR. 913 * @param hour receives the hour offset field 919 UVector* patternItems, UBool forceSingleHourDigit, int32_t& hour, int32_t& min, int32_t& sec) const; 1029 * Initialize localized GMT format offset hour/min/sec patterns.
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | ucal.h | 335 * hour of the morning or afternoon. <code>HOUR</code> is used for the 12-hour 346 * hour of the day. <code>HOUR_OF_DAY</code> is used for the 24-hour clock. 355 * minute within the hour. 709 * 3,600,000 (one hour) or zero. 1104 * @param hour The desired hour of day. 1118 int32_t hour, 1700 * typically one hour [all...] |
H A D | tzfmt.h | 791 * Appends seconds field to the offset pattern with hour/minute 792 * Note: This code will be obsoleted once we add hour-minute-second pattern data in CLDR. 794 * @param result the output offset pattern including hour, minute and seconds fields 801 * Truncates minutes field to the offset pattern with hour/minute 802 * Note: This code will be obsoleted once we add hour pattern data in CLDR. 913 * @param hour receives the hour offset field 919 UVector* patternItems, UBool forceSingleHourDigit, int32_t& hour, int32_t& min, int32_t& sec) const; 1029 * Initialize localized GMT format offset hour/min/sec patterns.
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | tzfmt.h | 791 * Appends seconds field to the offset pattern with hour/minute 792 * Note: This code will be obsoleted once we add hour-minute-second pattern data in CLDR. 794 * @param result the output offset pattern including hour, minute and seconds fields 801 * Truncates minutes field to the offset pattern with hour/minute 802 * Note: This code will be obsoleted once we add hour pattern data in CLDR. 913 * @param hour receives the hour offset field 919 UVector* patternItems, UBool forceSingleHourDigit, int32_t& hour, int32_t& min, int32_t& sec) const; 1029 * Initialize localized GMT format offset hour/min/sec patterns.
|
H A D | ucal.h | 335 * hour of the morning or afternoon. <code>HOUR</code> is used for the 12-hour 346 * hour of the day. <code>HOUR_OF_DAY</code> is used for the 24-hour clock. 355 * minute within the hour. 709 * 3,600,000 (one hour) or zero. 1104 * @param hour The desired hour of day. 1118 int32_t hour, 1710 * typically one hour [all...] |
/third_party/skia/third_party/externals/zlib/google/ |
H A D | zip_internal.cc | 258 zip_info.tmz_date.tm_hour = file_time_parts.hour; in TimeToZipFileInfo()
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/reminder/ |
H A D | reminder_common.cpp | 775 // hour in CreateReminderAlarm() 871 const int32_t &hour, const int32_t &min) in CheckCalendarParams() 890 if (hour < 0 || hour > maxHour) { in CheckCalendarParams() 870 CheckCalendarParams(const int32_t &year, const int32_t &month, const int32_t &day, const int32_t &hour, const int32_t &min) CheckCalendarParams() argument
|
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_mng_tlv.c | 422 if (p_time->hour > 23) in qed_mfw_get_tlv_time_value() 423 p_time->hour = 0; in qed_mfw_get_tlv_time_value() 434 p_time->hour, p_time->min, p_time->msec, p_time->usec); in qed_mfw_get_tlv_time_value()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_mng_tlv.c | 422 if (p_time->hour > 23) in qed_mfw_get_tlv_time_value() 423 p_time->hour = 0; in qed_mfw_get_tlv_time_value() 434 p_time->hour, p_time->min, p_time->msec, p_time->usec); in qed_mfw_get_tlv_time_value()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | DateFormatTest.java | 312 * So it need to add the timezone offset on hour field. in TestTwoDigitYearDSTParse() 321 int hour = 2 + (defaultOffset - PSTOffset) / (60*60*1000); in TestTwoDigitYearDSTParse() 322 // hour is the expected hour of day, in units of seconds in TestTwoDigitYearDSTParse() 323 hour = ((hour < 0) ? hour + 24 : hour) * 60*60; in TestTwoDigitYearDSTParse() 329 hour += defaultTZ.inDaylightTime(d) ? 1 : 0; in TestTwoDigitYearDSTParse() 332 // hr is the actual hour o in TestTwoDigitYearDSTParse() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateFormatTest.java | 309 * So it need to add the timezone offset on hour field. in TestTwoDigitYearDSTParse() 318 int hour = 2 + (defaultOffset - PSTOffset) / (60*60*1000); in TestTwoDigitYearDSTParse() 319 // hour is the expected hour of day, in units of seconds in TestTwoDigitYearDSTParse() 320 hour = ((hour < 0) ? hour + 24 : hour) * 60*60; in TestTwoDigitYearDSTParse() 326 hour += defaultTZ.inDaylightTime(d) ? 1 : 0; in TestTwoDigitYearDSTParse() 329 // hr is the actual hour o in TestTwoDigitYearDSTParse() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtw88/ |
H A D | fw.h | 184 u8 hour; member 211 u8 hour; member
|
/third_party/PyYAML/lib/yaml/ |
H A D | constructor.py | 315 (?P<hour>[0-9][0-9]?) 329 if not values['hour']: 331 hour = int(values['hour']) 350 return datetime.datetime(year, month, day, hour, minute, second, fraction,
|
/third_party/icu/icu4c/source/i18n/ |
H A D | ucal.cpp | 449 int32_t hour, in ucal_setDateTime() 456 ((Calendar*)cal)->set(year, month, date, hour, minute, second); in ucal_setDateTime() 445 ucal_setDateTime( UCalendar* cal, int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second, UErrorCode *status) ucal_setDateTime() argument
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | ucal.cpp | 450 int32_t hour, in ucal_setDateTime() 457 ((Calendar*)cal)->set(year, month, date, hour, minute, second); in ucal_setDateTime() 446 ucal_setDateTime( UCalendar* cal, int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second, UErrorCode *status) ucal_setDateTime() argument
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | ucal.cpp | 449 int32_t hour, in ucal_setDateTime() 456 ((Calendar*)cal)->set(year, month, date, hour, minute, second); in ucal_setDateTime() 445 ucal_setDateTime( UCalendar* cal, int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second, UErrorCode *status) ucal_setDateTime() argument
|
/third_party/python/Lib/ |
H A D | calendar.py | 655 year, month, day, hour, minute, second = tuple[:6] 657 hours = days*24 + hour
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | time_zone_format.cc | 116 tm.tm_hour = al.cs.hour(); in ToTM() 423 bp = Format02d(ep, al.cs.hour()); in format() 916 // So reparse the input with a known AM hour, and check if it is shifted in parse() 917 // to a PM hour. in parse() 928 // Adjust a 12-hour tm_hour value if it should be in the afternoon. in parse()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | SimpleDateFormat.java | 394 * <th rowspan="4">hour</th> 399 * generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match 400 * a 24-hour-cycle format (H or k). Use hh for zero padding.</td> 407 * generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a 408 * 12-hour-cycle format (h or K). Use HH for zero padding.</td> 665 * the "hour in am/pm" pattern symbol is used. This information loss can 741 * year > month > date > am-pm > hour > minute 761 * year > month > date > am-pm > hour > minute 1924 int hour = cal.get(Calendar.HOUR_OF_DAY); in subFormat() 1930 if ((/*hour in subFormat() [all...] |