/third_party/python/Lib/ |
D | datetime.py | 397 def _check_time_fields(hour, minute, second, microsecond, fold): argument 401 microsecond = _index(microsecond) 408 if not 0 <= microsecond <= 999999: 409 raise ValueError('microsecond must be in 0..999999', microsecond) 412 return hour, minute, second, microsecond, fold 1239 def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0): argument 1265 hour, minute, second, microsecond, fold = _check_time_fields( 1266 hour, minute, second, microsecond, fold) 1272 self._microsecond = microsecond 1295 def microsecond(self): member in time [all …]
|
/third_party/node/deps/v8/src/objects/ |
D | js-temporal-objects.cc | 68 int32_t microsecond; member 105 int32_t microsecond; member 184 int32_t minute, int32_t second, int32_t millisecond, int32_t microsecond, 227 int32_t microsecond, 239 int32_t millisecond, int32_t microsecond, int32_t nanosecond); 254 int64_t millisecond, int64_t microsecond, int64_t nanosecond); 265 int64_t millisecond, int64_t microsecond, int64_t nanosecond, 373 int32_t microsecond, int32_t nanosecond) { in ISODateTimeWithinLimits() argument 546 int32_t minute, int32_t second, int32_t millisecond, int32_t microsecond, in CreateTemporalDateTime() argument 559 if (!IsValidTime(isolate, hour, minute, second, millisecond, microsecond, in CreateTemporalDateTime() [all …]
|
/third_party/python/Doc/c-api/ |
D | datetime.rst | 103 minute, second and microsecond. 109 minute, second, microsecond and fold. 117 microsecond. 123 microsecond and fold. 191 Return the microsecond, as an int from 0 through 999999. 220 Return the microsecond, as an int from 0 through 999999.
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | ce.txt | 29 microsecond{ 183 microsecond{
|
D | smn.txt | 13 microsecond{
|
D | sah.txt | 85 microsecond{ 367 microsecond{
|
D | sw_KE.txt | 10 microsecond{
|
D | bs_Cyrl.txt | 88 microsecond{
|
D | mzn.txt | 129 microsecond{ 638 microsecond{
|
D | zh.txt | 242 microsecond{ 929 microsecond{ 1379 microsecond{
|
/third_party/icu/icu4c/source/data/unit/ |
D | ce.txt | 29 microsecond{ 183 microsecond{
|
D | smn.txt | 13 microsecond{
|
D | sah.txt | 85 microsecond{ 367 microsecond{
|
D | ig.txt | 95 microsecond{
|
D | en_AU.txt | 101 microsecond{ 260 microsecond{
|
D | sw_KE.txt | 10 microsecond{
|
D | bs_Cyrl.txt | 88 microsecond{
|
D | mzn.txt | 129 microsecond{ 638 microsecond{
|
/third_party/python/Doc/includes/ |
D | tzinfo_examples.py | 30 return datetime(*args, microsecond=dt.microsecond,
|
/third_party/python/Doc/library/ |
D | datetime.rst | 103 Attributes: :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`, 111 :attr:`day`, :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`, 119 or :class:`.datetime` instances to microsecond resolution. 233 combined and their sum is rounded to the nearest microsecond using 425 most platforms) this method will lose microsecond accuracy. 828 .. class:: datetime(year, month, day, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fo… 840 * ``0 <= microsecond < 1000000``, 968 microsecond of the result are all 0, and :attr:`.tzinfo` is ``None``. 1103 .. attribute:: datetime.microsecond 1207 Return :class:`.time` object with same hour, minute, second, microsecond and fold. [all …]
|
/third_party/python/Lib/test/ |
D | datetimetester.py | 1132 self.assertEqual(fromord.microsecond, 0) 1965 self.assertEqual(dt.microsecond, 0) 1977 self.assertEqual(dt.microsecond, 8000) 1992 dt.microsecond) 2436 self.assertEqual(zero.microsecond, 0) 2445 self.assertEqual(minus_one.microsecond, 999999) 2455 self.assertEqual(t.microsecond, 992188) 2463 self.assertEqual(t.microsecond, 999999) 2466 self.assertEqual(t.microsecond, 0) 2469 self.assertEqual(t.microsecond, 7812) [all …]
|
/third_party/python/Modules/ |
D | _testcapimodule.c | 2595 int hour, minute, second, microsecond; in get_datetime_fromdateandtime() local 2600 &hour, &minute, &second, µsecond)) { in get_datetime_fromdateandtime() 2607 hour, minute, second, microsecond); in get_datetime_fromdateandtime() 2612 hour, minute, second, microsecond, in get_datetime_fromdateandtime() 2625 int hour, minute, second, microsecond, fold; in get_datetime_fromdateandtimeandfold() local 2630 &hour, &minute, &second, µsecond, in get_datetime_fromdateandtimeandfold() 2638 hour, minute, second, microsecond, in get_datetime_fromdateandtimeandfold() 2644 hour, minute, second, microsecond, in get_datetime_fromdateandtimeandfold() 2657 int hour, minute, second, microsecond; in get_time_fromtime() local 2661 &hour, &minute, &second, µsecond)) { in get_time_fromtime() [all …]
|
D | _datetimemodule.c | 605 int *microsecond) in normalize_datetime() argument 607 normalize_pair(second, microsecond, 1000000); in normalize_datetime() 732 int *minute, int *second, int *microsecond) in parse_hh_mm_ss_ff() argument 766 p = parse_digits(p, microsecond, len_remains); in parse_hh_mm_ss_ff() 772 *microsecond *= 1000; in parse_hh_mm_ss_ff() 781 int *second, int *microsecond, int *tzoffset, in parse_isoformat_time() argument 804 microsecond); in parse_isoformat_time() 4584 int hour = 0, minute = 0, second = 0, microsecond = 0; in time_fromisoformat() local 4587 &hour, &minute, &second, µsecond, in time_fromisoformat() 4603 t = new_time(hour, minute, second, microsecond, tzinfo, 0); in time_fromisoformat() [all …]
|
/third_party/libinput/doc/user/ |
D | timestamps.rst | 14 Most libinput events provide a timestamp in millisecond and/or microsecond
|
/third_party/python/Lib/turtledemo/ |
D | clock.py | 98 sekunde = t.second + t.microsecond*0.000001
|