Home
last modified time | relevance | path

Searched refs:hours (Results 26 - 50 of 1300) sorted by relevance

12345678910>>...52

/third_party/python/Lib/test/test_zoneinfo/
H A Dtest_zoneinfo.py41 ONE_H = timedelta(hours=1)
548 LMT = ZoneOffset("LMT", -timedelta(hours=6, minutes=31, seconds=2))
549 STD = ZoneOffset("STD", -timedelta(hours=6))
1073 EST = ZoneOffset("EST", timedelta(hours=-5), ZERO)
1074 EDT = ZoneOffset("EDT", timedelta(hours=-4), ONE_H)
1124 AEST = ZoneOffset("AEST", timedelta(hours=10), ZERO)
1125 AEDT = ZoneOffset("AEDT", timedelta(hours=11), ONE_H)
1176 ZoneOffset("+11", timedelta(hours=11)),
1186 M04 = ZoneOffset("-04", timedelta(hours=-4))
1187 M03 = ZoneOffset("-03", timedelta(hours
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dmeasfmt.cpp292 // Converts a composite measure into hours-minutes-seconds and stores at hms
293 // array. [0] is hours; [1] is minutes; [2] is seconds. Returns a bit map of
294 // units found: 1=hours, 2=minutes, 4=seconds. For example, if measures
295 // contains hours-minutes, this function would return 3.
297 // If measures cannot be converted into hours, minutes, seconds or if amounts
298 // are negative, or if hours, minutes, seconds are out of order, returns 0.
735 double hours = hms[0].getDouble(status); in formatNumeric() local
745 hours = uprv_trunc(hours); in formatNumeric()
749 hours in formatNumeric()
[all...]
H A Dutmscale.cpp21 #define hours (minutes * 60) macro
22 #define days (hours * 24)
/third_party/node/lib/internal/console/
H A Dconstructor.js641 let hours = 0;
648 hours = MathFloor(ms / kHour);
657 if (hours !== 0 || minutes !== 0) {
662 const res = hours !== 0 ? `${hours}:${pad(minutes)}` : minutes;
663 return `${res}:${pad(seconds)}.${ms} (${hours !== 0 ? 'h:m' : ''}m:ss.mmm)`;
/third_party/node/deps/icu-small/source/i18n/
H A Dmeasfmt.cpp292 // Converts a composite measure into hours-minutes-seconds and stores at hms
293 // array. [0] is hours; [1] is minutes; [2] is seconds. Returns a bit map of
294 // units found: 1=hours, 2=minutes, 4=seconds. For example, if measures
295 // contains hours-minutes, this function would return 3.
297 // If measures cannot be converted into hours, minutes, seconds or if amounts
298 // are negative, or if hours, minutes, seconds are out of order, returns 0.
735 double hours = hms[0].getDouble(status); in formatNumeric() local
745 hours = uprv_trunc(hours); in formatNumeric()
749 hours in formatNumeric()
[all...]
H A Dutmscale.cpp21 #define hours (minutes * 60) macro
22 #define days (hours * 24)
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dmeasfmt.cpp292 // Converts a composite measure into hours-minutes-seconds and stores at hms
293 // array. [0] is hours; [1] is minutes; [2] is seconds. Returns a bit map of
294 // units found: 1=hours, 2=minutes, 4=seconds. For example, if measures
295 // contains hours-minutes, this function would return 3.
297 // If measures cannot be converted into hours, minutes, seconds or if amounts
298 // are negative, or if hours, minutes, seconds are out of order, returns 0.
735 double hours = hms[0].getDouble(status); in formatNumeric() local
745 hours = uprv_trunc(hours); in formatNumeric()
749 hours in formatNumeric()
[all...]
H A Dutmscale.cpp21 #define hours (minutes * 60) macro
22 #define days (hours * 24)
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_format_test.cc100 format(kFmt, chrono::time_point_cast<chrono::hours>(t0), utc)); in TEST()
109 chrono::hours(12) + chrono::minutes(34) + chrono::seconds(56); in TEST()
145 tp += chrono::hours(13) + chrono::minutes(4) + chrono::seconds(5); in TEST()
469 tz = fixed_time_zone(chrono::hours(12)); in TEST()
474 tz = fixed_time_zone(-chrono::hours(12)); in TEST()
479 tz = fixed_time_zone(chrono::hours(12) + chrono::seconds(56)); in TEST()
484 tz = fixed_time_zone(-chrono::hours(12) - chrono::seconds(56)); in TEST()
489 tz = fixed_time_zone(chrono::hours(12) + chrono::minutes(34)); in TEST()
494 tz = fixed_time_zone(-chrono::hours(12) - chrono::minutes(34)); in TEST()
499 tz = fixed_time_zone(chrono::hours(1 in TEST()
[all...]
H A Dtime_zone_format.cc193 const int hours = offset /= 60; in FormatOffset() local
203 if (hours == 0 && minutes == 0) sign = '+'; in FormatOffset()
209 ep = Format02d(ep, hours); in FormatOffset()
586 int hours = 0; in ParseOffset() local
589 const char* ap = ParseInt(dp, 2, 0, 23, &hours); in ParseOffset()
600 *offset = ((hours * 60 + minutes) * 60) + seconds; in ParseOffset()
/third_party/node/deps/v8/src/objects/
H A Djs-temporal-objects.cc92 int64_t hours; member
163 Isolate* isolate, Handle<BigInt> epoch_nanoseconds, int64_t hours,
169 Isolate* isolate, int64_t* days, int64_t* hours, int64_t* minutes,
266 int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds,
270 int64_t TotalDurationNanoseconds(Isolate* isolate, int64_t days, int64_t hours,
795 int64_t years, int64_t months, int64_t weeks, int64_t days, int64_t hours, in CreateTemporalDuration()
800 // 1. If ! IsValidDuration(years, months, weeks, days, hours, minutes, in CreateTemporalDuration()
804 {years, months, weeks, days, hours, minutes, seconds, in CreateTemporalDuration()
829 // 8. Set object.[[Hours]] to hours. in CreateTemporalDuration()
830 SET_FROM_INT64(object, hours); in CreateTemporalDuration()
793 CreateTemporalDuration( Isolate* isolate, Handle<JSFunction> target, Handle<HeapObject> new_target, int64_t years, int64_t months, int64_t weeks, int64_t days, int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds, int64_t microseconds, int64_t nanoseconds) CreateTemporalDuration() argument
846 CreateTemporalDuration( Isolate* isolate, int64_t years, int64_t months, int64_t weeks, int64_t days, int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds, int64_t microseconds, int64_t nanoseconds) CreateTemporalDuration() argument
2222 int64_t hours = offset_nanoseconds / 3600000000000; FormatTimeZoneOffsetString() local
2595 int32_t hours = parsed.tzuo_hour; ParseTemporalTimeZoneString() local
2725 int64_t hours = parsed.tzuo_hour; ParseTimeZoneOffsetString() local
3596 BalanceDuration(Isolate* isolate, int64_t* days, int64_t* hours, int64_t* minutes, int64_t* seconds, int64_t* milliseconds, int64_t* microseconds, int64_t* nanoseconds, Unit largest_unit, const char* method_name) BalanceDuration() argument
3609 BalanceDuration(Isolate* isolate, int64_t* days, int64_t* hours, int64_t* minutes, int64_t* seconds, int64_t* milliseconds, int64_t* microseconds, int64_t* nanoseconds, Unit largest_unit, Handle<Object> relative_to_obj, const char* method_name) BalanceDuration() argument
4228 AddInstant(Isolate* isolate, Handle<BigInt> epoch_nanoseconds, int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds, int64_t microseconds, int64_t nanoseconds) AddInstant() argument
4629 AddTime(Isolate* isolate, int64_t hour, int64_t minute, int64_t second, int64_t millisecond, int64_t microsecond, int64_t nanosecond, int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds, int64_t microseconds, int64_t nanoseconds) AddTime() argument
4657 TotalDurationNanoseconds(Isolate* isolate, int64_t days, int64_t hours, int64_t minutes, int64_t seconds, int64_t milliseconds, int64_t microseconds, int64_t nanoseconds, int64_t offset_shift) TotalDurationNanoseconds() argument
4693 Constructor( Isolate* isolate, Handle<JSFunction> target, Handle<HeapObject> new_target, Handle<Object> years, Handle<Object> months, Handle<Object> weeks, Handle<Object> days, Handle<Object> hours, Handle<Object> minutes, Handle<Object> seconds, Handle<Object> milliseconds, Handle<Object> microseconds, Handle<Object> nanoseconds) Constructor() argument
[all...]
/kernel/linux/linux-5.10/drivers/power/supply/
H A Dmax14577_charger.c207 unsigned long hours) in max14577_set_fast_charge_timer()
211 switch (hours) { in max14577_set_fast_charge_timer()
213 reg_data = hours - 3; in max14577_set_fast_charge_timer()
221 hours); in max14577_set_fast_charge_timer()
206 max14577_set_fast_charge_timer(struct max14577_charger *chg, unsigned long hours) max14577_set_fast_charge_timer() argument
H A Dmax77693_charger.c290 /* Starting from 4 hours, step by 2 hours */ in fast_charge_timer_show()
303 unsigned long hours) in max77693_set_fast_charge_timer()
315 switch (hours) { in max77693_set_fast_charge_timer()
317 data = (hours - 4) / 2 + 1; in max77693_set_fast_charge_timer()
302 max77693_set_fast_charge_timer(struct max77693_charger *chg, unsigned long hours) max77693_set_fast_charge_timer() argument
/kernel/linux/linux-6.6/drivers/power/supply/
H A Dmax14577_charger.c207 unsigned long hours) in max14577_set_fast_charge_timer()
211 switch (hours) { in max14577_set_fast_charge_timer()
213 reg_data = hours - 3; in max14577_set_fast_charge_timer()
221 hours); in max14577_set_fast_charge_timer()
206 max14577_set_fast_charge_timer(struct max14577_charger *chg, unsigned long hours) max14577_set_fast_charge_timer() argument
H A Dmax77693_charger.c290 /* Starting from 4 hours, step by 2 hours */ in fast_charge_timer_show()
303 unsigned long hours) in max77693_set_fast_charge_timer()
315 switch (hours) { in max77693_set_fast_charge_timer()
317 data = (hours - 4) / 2 + 1; in max77693_set_fast_charge_timer()
302 max77693_set_fast_charge_timer(struct max77693_charger *chg, unsigned long hours) max77693_set_fast_charge_timer() argument
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/pickerView/router/
H A Dindex.js537 const hours = date.getHours();
539 return this.concat(hours, minutes);
546 concat(hours, minutes) {
547 return `${this.fill(hours)}:${this.fill(minutes)}`;
/test/xts/acts/arkui/ace_standard/entry/src/main/js/default/pages/pickerView/router/
H A Dindex.js537 const hours = date.getHours();
539 return this.concat(hours, minutes);
546 concat(hours, minutes) {
547 return `${this.fill(hours)}:${this.fill(minutes)}`;
/test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/MainAbility/pages/pickerView/router/
H A Dindex.js537 const hours = date.getHours();
539 return this.concat(hours, minutes);
546 concat(hours, minutes) {
547 return `${this.fill(hours)}:${this.fill(minutes)}`;
/test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/default/pages/pickerView/router/
H A Dindex.js537 const hours = date.getHours();
539 return this.concat(hours, minutes);
546 concat(hours, minutes) {
547 return `${this.fill(hours)}:${this.fill(minutes)}`;
/third_party/ffmpeg/tools/
H A Dsidxindex.c221 int hours = minutes / 60; in write_time() local
226 if (hours) in write_time()
227 fprintf(out, "%dH", hours); in write_time()
228 if (hours || minutes) in write_time()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DCachePruning.h36 std::chrono::seconds Expiration = std::chrono::hours(7 * 24); // 1w
65 /// which means a pruning interval of 30 seconds, expiration time of 24 hours
/kernel/linux/linux-5.10/arch/m68k/apollo/
H A Dconfig.c211 t->tm_hour=rtc->hours; in dn_dummy_hwclk()
221 rtc->hours=t->tm_hour; in dn_dummy_hwclk()
/kernel/linux/linux-6.6/arch/m68k/apollo/
H A Dconfig.c210 t->tm_hour=rtc->hours; in dn_dummy_hwclk()
220 rtc->hours=t->tm_hour; in dn_dummy_hwclk()
/base/notification/eventhandler/frameworks/eventhandler/src/
H A Dnone_io_waiter.cpp48 static const auto oneYear = std::chrono::hours(HOURS_PER_YEAR); in WaitFor()
/third_party/python/Lib/
H A Ddatetime.py163 'hours': '{:02d}',
190 hh, mm = divmod(off, timedelta(hours=1))
233 h, rest = divmod(offset, timedelta(hours=1))
449 td = timedelta(hours=tz_comps[0], minutes=tz_comps[1],
512 "-timedelta(hours=24) and timedelta(hours=24)" %
593 milliseconds=0, minutes=0, hours=0, weeks=0):
610 seconds += minutes*60 + hours*3600
889 timedelta.max = timedelta(days=999999999, hours=23, minutes=59, seconds=59,
1482 h, m = divmod(timedelta(hours
[all...]

Completed in 24 milliseconds

12345678910>>...52