/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | civil_time_test.cc | 49 static_assert(cmm.minute() == 14, "Normal.minute"); in TEST() 70 static_assert(cmm.minute() == 0, "Conversion.minute"); in TEST() 83 static_assert(cs.minute() == 14, "Normalized.minute"); in TEST() 93 static_assert(cs.minute() == 16, "SecondOverflow.minute"); in TEST() 103 static_assert(cs.minute() == 11, "SecondUnderflow.minute"); in TEST() [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_date_time.cpp | 67 uint32 minute, in dng_date_time() 74 , fMinute (minute) in dng_date_time() 228 uint32 minute, in SetTime() 235 fDateTime.fMinute = minute; in SetTime() 284 unsigned minute = 0; in Decode_ISO_8601() local 290 &minute, in Decode_ISO_8601() 297 (uint32) minute, in Decode_ISO_8601() 554 unsigned minute = 0; in Decode_IPTC_Time() local 562 &minute, in Decode_IPTC_Time() 578 (uint32) minute, in Decode_IPTC_Time() 63 dng_date_time(uint32 year, uint32 month, uint32 day, uint32 hour, uint32 minute, uint32 second) dng_date_time() argument 227 SetTime(uint32 hour, uint32 minute, uint32 second) SetTime() argument 595 unsigned minute = 0; Decode_IPTC_Time() local 617 unsigned minute = 0; Decode_IPTC_Time() local [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | civil_time_test.cc | 207 absl::CivilMinute minute = hour; in TEST() local 208 absl::CivilSecond second = minute; in TEST() 218 second = minute; in TEST() 219 EXPECT_EQ(second, minute); in TEST() 221 minute = year; in TEST() 222 EXPECT_EQ(minute, year); in TEST() 223 minute = month; in TEST() 224 EXPECT_EQ(minute, month); in TEST() 225 minute = day; in TEST() 226 EXPECT_EQ(minute, da in TEST() [all...] |
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | time.cc | 78 time.minute < 0 || time.minute > 59 || in ValidateDateTime() 126 kSecondsPerMinute * time.minute + in SecondsSinceCommonEra() 202 int minute; in ParseTimezoneOffset() local 203 if ((data = ParseInt(data, 2, 0, 59, &minute)) == nullptr) { in ParseTimezoneOffset() 206 *offset = (hour * 60 + minute) * 60; in ParseTimezoneOffset() 245 int minute = seconds / kSecondsPerMinute; in SecondsToDateTime() local 251 time->minute = minute; in SecondsToDateTime() 278 time.hour, time.minute, tim in FormatTime() [all...] |
H A D | time_test.cc | 48 time.hour = time.minute = time.second = 0; in CreateTimestamp() 66 EXPECT_EQ(0, time.minute); in TEST() 77 EXPECT_EQ(59, time.minute); in TEST() 87 start.minute = 0; in TEST() 93 end.minute = 59; in TEST() 156 time.minute = 0; in TEST() 211 start.minute = 0; in TEST() 217 end.minute = 59; in TEST()
|
/third_party/icu/icu4c/source/test/compat/ |
H A D | tzdate.c | 34 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime); 41 int year, month, day, hour, minute; in main() local 57 minute = atoi(argv[5]); in main() 63 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime); in main() 111 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) { in getSystemCurrentTime() argument 125 ts.tm_min = minute; in getSystemCurrentTime()
|
/third_party/node/deps/npm/node_modules/tiny-relative-date/lib/ |
H A D | factory.js | 21 var minute = 60; 22 var hour = minute * 60; 59 case !(delta < minute): 62 case !(delta < 2 * minute): 66 return translate('minutes', Math.floor(delta / minute));
|
/third_party/python/Lib/turtledemo/ |
H A D | clock.py | 99 minute = t.minute + sekunde/60.0 100 stunde = t.hour + minute/60.0 113 minute_hand.setheading(6*minute)
|
/third_party/python/Lib/ |
H A D | datetime.py | 528 def _check_time_fields(hour, minute, second, microsecond, fold): 530 minute = _index(minute) 535 if not 0 <= minute <= 59: 536 raise ValueError('minute must be in 0..59', minute) 543 return hour, minute, second, microsecond, fold 1336 hour, minute, second, microsecond, tzinfo, fold 1340 def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0): 1345 hour, minute (require 1386 def minute(self): global() member in time 1719 def minute(self): global() member in datetime [all...] |
/third_party/node/deps/v8/src/date/ |
H A D | dateparser.cc | 74 int& minute = comp_[1]; in Write() local 84 if (!IsHour(hour) || !IsMinute(minute) || !IsSecond(second) || in Write() 87 if (hour != 24 || minute != 0 || second != 0 || millisecond != 0) { in Write() 93 output[MINUTE] = minute; in Write()
|
/third_party/python/Lib/zoneinfo/ |
H A D | _zoneinfo.py | 189 + dt.minute * 60 517 __slots__ = ["d", "julian", "hour", "minute", "second"] 519 def __init__(self, d, julian, hour=2, minute=0, second=0): 527 self.minute = minute 538 epoch += self.hour * 3600 + self.minute * 60 + self.second 544 __slots__ = ["m", "w", "d", "hour", "minute", "second"] 562 def __init__(self, m, w, d, hour=2, minute=0, second=0): 576 self.minute = minute [all...] |
/third_party/python/Modules/ |
H A D | _zoneinfo.c | 66 int8_t minute; member 75 int8_t minute; member 130 parse_transition_time(const char *const p, int8_t *hour, int8_t *minute, 1211 (int64_t)(self->minute * 60) + (int64_t)(self->second)); in calendarrule_year_to_timestamp() 1217 int8_t minute, int8_t second, CalendarRule *out) in calendarrule_new() 1251 .minute = minute, in calendarrule_new() 1278 // days are accounted for in the hour, minute and second portions. in dayrule_year_to_timestamp() 1298 (self->minute * 60) + self->second; in dayrule_year_to_timestamp() 1303 dayrule_new(uint8_t julian, unsigned int day, int8_t hour, int8_t minute, in dayrule_new() argument 1216 calendarrule_new(uint8_t month, uint8_t week, uint8_t day, int8_t hour, int8_t minute, int8_t second, CalendarRule *out) calendarrule_new() argument 1742 int8_t minute = 0; parse_transition_rule() local 1851 parse_transition_time(const char *const p, int8_t *hour, int8_t *minute, int8_t *second) parse_transition_time() argument 2203 int hour, minute, second; get_local_timestamp() local [all...] |
H A D | _datetimemodule.c | 486 "minute must be in 0..59"); in check_time_args() 642 int *hour, int *minute, int *second, in normalize_datetime() 646 normalize_pair(minute, second, 60); in normalize_datetime() 647 normalize_pair(hour, minute, 60); in normalize_datetime() 810 int *minute, int *second, int *microsecond) in parse_hh_mm_ss_ff() 812 *hour = *minute = *second = *microsecond = 0; in parse_hh_mm_ss_ff() 815 int *vals[3] = {hour, minute, second}; in parse_hh_mm_ss_ff() 875 parse_isoformat_time(const char *dtstr, size_t dtlen, int *hour, int *minute, in parse_isoformat_time() argument 898 int rv = parse_hh_mm_ss_ff(dtstr, tzinfo_pos, hour, minute, second, in parse_isoformat_time() 988 new_datetime_ex2(int year, int month, int day, int hour, int minute, in new_datetime_ex2() argument 641 normalize_datetime(int *year, int *month, int *day, int *hour, int *minute, int *second, int *microsecond) normalize_datetime() argument 809 parse_hh_mm_ss_ff(const char *tstr, const char *tstr_end, int *hour, int *minute, int *second, int *microsecond) parse_hh_mm_ss_ff() argument 1022 new_datetime_ex(int year, int month, int day, int hour, int minute, int second, int usecond, PyObject *tzinfo, PyTypeObject *type) new_datetime_ex() argument 1034 new_datetime_subclass_fold_ex(int year, int month, int day, int hour, int minute, int second, int usecond, PyObject *tzinfo, int fold, PyObject *cls) new_datetime_subclass_fold_ex() argument 1059 new_datetime_subclass_ex(int year, int month, int day, int hour, int minute, int second, int usecond, PyObject *tzinfo, PyObject *cls) new_datetime_subclass_ex() argument 1069 new_time_ex2(int hour, int minute, int second, int usecond, PyObject *tzinfo, int fold, PyTypeObject *type) new_time_ex2() argument 1100 new_time_ex(int hour, int minute, int second, int usecond, PyObject *tzinfo, PyTypeObject *type) new_time_ex() argument 2519 PyObject *minute = NULL; delta_new() local 4243 int minute = 0; time_new() local 4651 int hour = 0, minute = 0, second = 0, microsecond = 0; time_fromisoformat() local 4923 int minute = 0; datetime_new() local 4989 utc_to_seconds(int year, int month, int day, int hour, int minute, int second) utc_to_seconds() argument 5035 int year, month, day, hour, minute, second, fold = 0; datetime_from_timet_and_us() local 5469 int hour = 0, minute = 0, second = 0, microsecond = 0; datetime_fromisoformat() local 5575 int minute = DATE_GET_MINUTE(date); add_datetime_timedelta() local 6328 local_to_seconds(int year, int month, int day, int hour, int minute, int second, int fold) local_to_seconds() argument [all...] |
/third_party/python/Include/ |
H A D | datetime.h | 18 * 5 minute 1 byte, 0-59 27 /* # of bytes for hour, minute, second, and usecond. */ 30 /* # of bytes for year, month, day, hour, minute, second, and usecond. */ 234 #define PyTime_FromTime(hour, minute, second, usecond) \ 235 PyDateTimeAPI->Time_FromTime(hour, minute, second, usecond, \ 238 #define PyTime_FromTimeAndFold(hour, minute, second, usecond, fold) \ 239 PyDateTimeAPI->Time_FromTimeAndFold(hour, minute, second, usecond, \
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
H A D | tzdst.c | 99 BufferInsert(standardString, bufLen, MIN_HIGH_OFF, '0'); /* minute only one bit, padding 0 to high bit */ in TimezoneFormat() 102 /* no minute bits, default is 0 */ in TimezoneFormat() 139 INT32 minute; in settimezone() local 163 minute = StringToDigital(standardString[MIN_HIGH_OFF], standardString[MIN_LOW_OFF]); in settimezone() 166 if ((minute > 59 || second > 59) || in settimezone() 167 ((standardString[OPERATE_OFF] == '-') && ((hour > 12) || ((hour == 12) && ((minute != 0) || (second != 0))))) || in settimezone() 168 ((standardString[OPERATE_OFF] == '+') && ((hour > 14) || ((hour == 14) && ((minute != 0) || (second != 0)))))) { in settimezone() 177 timezone = hour * 3600 + minute * 60 + second; in settimezone() 283 * 0~59 for seconds per minute
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
H A D | civil_time_detail.h | 60 minute_t minute, second_t second) in fields() 61 : y(year), m(month), d(day), hh(hour), mm(minute), ss(second) {} in fields() 386 // (e.g., second -> minute). 414 CONSTEXPR_M int minute() const noexcept { return f_.mm; } 497 (lhs.minute() < rhs.minute() || 498 (lhs.minute() == rhs.minute() && 521 lhs.minute() == rhs.minute() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | BuddhistCalendar.java | 169 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 175 int minute, int second) in BuddhistCalendar() 177 super(year, month, date, hour, minute, second); in BuddhistCalendar() 174 BuddhistCalendar(int year, int month, int date, int hour, int minute, int second) BuddhistCalendar() argument
|
H A D | CopticCalendar.java | 227 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 232 int minute, int second) { in CopticCalendar() 233 super(year, month, date, hour, minute, second); in CopticCalendar() 231 CopticCalendar(int year, int month, int date, int hour, int minute, int second) CopticCalendar() argument
|
H A D | TaiwanCalendar.java | 169 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 174 int minute, int second) in TaiwanCalendar() 176 super(year, month, date, hour, minute, second); in TaiwanCalendar() 173 TaiwanCalendar(int year, int month, int date, int hour, int minute, int second) TaiwanCalendar() argument
|
H A D | GregorianCalendar.java | 425 * @param minute the value used to set the MINUTE time field 431 int minute) { in GregorianCalendar() 438 set(MINUTE, minute); in GregorianCalendar() 450 * @param minute the value used to set the MINUTE time field 458 int minute, int second) { in GregorianCalendar() 465 set(MINUTE, minute); in GregorianCalendar() 430 GregorianCalendar(int year, int month, int date, int hour, int minute) GregorianCalendar() argument 457 GregorianCalendar(int year, int month, int date, int hour, int minute, int second) GregorianCalendar() argument
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | TaiwanCalendar.java | 158 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 162 int minute, int second) in TaiwanCalendar() 164 super(year, month, date, hour, minute, second); in TaiwanCalendar() 161 TaiwanCalendar(int year, int month, int date, int hour, int minute, int second) TaiwanCalendar() argument
|
H A D | CopticCalendar.java | 206 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 210 int minute, int second) { in CopticCalendar() 211 super(year, month, date, hour, minute, second); in CopticCalendar() 209 CopticCalendar(int year, int month, int date, int hour, int minute, int second) CopticCalendar() argument
|
H A D | BuddhistCalendar.java | 160 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 165 int minute, int second) in BuddhistCalendar() 167 super(year, month, date, hour, minute, second); in BuddhistCalendar() 164 BuddhistCalendar(int year, int month, int date, int hour, int minute, int second) BuddhistCalendar() argument
|
H A D | GregorianCalendar.java | 413 * @param minute the value used to set the MINUTE time field 418 int minute) { in GregorianCalendar() 425 set(MINUTE, minute); in GregorianCalendar() 437 * @param minute the value used to set the MINUTE time field 444 int minute, int second) { in GregorianCalendar() 451 set(MINUTE, minute); in GregorianCalendar() 417 GregorianCalendar(int year, int month, int date, int hour, int minute) GregorianCalendar() argument 443 GregorianCalendar(int year, int month, int date, int hour, int minute, int second) GregorianCalendar() argument
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 327 # Sub-minute offsets: 529 b = td(0, 60) # One minute 945 minute = timedelta(minutes=1) 946 self.assertEqual(t / minute, 2.5) 947 self.assertEqual(t // minute, 2) 959 minute = timedelta(minutes=1) 960 r = t % minute 964 r = t % minute 974 minute = timedelta(minutes=1) 975 q, r = divmod(t, minute) [all...] |