Home
last modified time | relevance | path

Searched refs:_time (Results 1 – 21 of 21) sorted by relevance

/third_party/python/Doc/includes/
Dtzinfo_examples.py11 import time as _time namespace
13 STDOFFSET = timedelta(seconds = -_time.timezone)
14 if _time.daylight:
15 DSTOFFSET = timedelta(seconds = -_time.altzone)
26 args = _time.localtime(stamp)[:6]
29 fold = (args == _time.localtime(stamp - dst_diff))
46 return _time.tzname[self._isdst(dt)]
52 stamp = _time.mktime(tt)
53 tt = _time.localtime(stamp)
/third_party/python/Tools/ccbench/
Dccbench.py158 _time = time.time
166 t2 = _time()
273 _time = time.time
276 _sendto(sock, "%r\n" % _time(), addr)
344 _time = time.time
347 start_time = _time()
353 t = _time()
402 _time = time.time
409 start_time = _time()
412 while _time() < end_time:
[all …]
/third_party/python/Lib/test/
Dtest_sched.py16 self._time = 0
21 return self._time
27 t += self._time
29 self._time = self._stop
31 self._time = t
Ddatetimetester.py32 import time as _time namespace
1489 _time.strftime('%')
1492 self.assertEqual(t.strftime('%'), _time.strftime('%', t.timetuple()))
1495 _time.strftime("m:03 d:02 y:05 %", t.timetuple()),
2587 (-_time.timezone, _time.tzname[0])):
5396 tm = _time.localtime(1.4e9)
5397 if _time.strftime('%Z%z', tm) != 'LHST+1030':
5424 tm = _time.localtime(1.4e9)
5425 if _time.strftime('%Z%z', tm) != 'LHST+1030':
5873 _time.tzset()
[all …]
/third_party/node/benchmark/
Dcommon.js15 this._time = 0n;
221 this._time = process.hrtime.bigint();
243 if (time === this._time) {
251 const elapsed = time - this._time;
/third_party/python/Lib/
Dtelnetlib.py39 from time import monotonic as _time unknown
311 deadline = _time() + timeout
326 timeout = deadline - _time()
616 deadline = _time() + timeout
630 timeout = deadline - _time()
Dsched.py31 from time import monotonic as _time unknown
53 def __init__(self, timefunc=_time, delayfunc=time.sleep):
Ddatetime.py11 import time as _time namespace
159 return _time.struct_time((y, m, d, hh, mm, ss, wday, dnum, dstflag))
262 return _time.strftime(newformat, timetuple)
829 y, m, d, hh, mm, ss, weekday, jday, dst = _time.localtime(t)
835 t = _time.time()
1651 converter = _time.gmtime if utc else _time.localtime
1698 t = _time.time()
1704 t = _time.time()
1764 y, m, d, hh, mm, ss = _time.localtime(u)[:6]
1853 localtm = _time.localtime(ts)
[all …]
Dthreading.py8 from time import monotonic as _time unknown
350 endtime = _time() + waittime
352 waittime = endtime - _time()
455 endtime = _time() + timeout
457 timeout = endtime - _time()
Dtrace.py62 from time import monotonic as _time unknown
420 self.start_time = _time()
560 print('%.2f' % (_time() - self.start_time), end=' ')
573 print('%.2f' % (_time() - self.start_time), end=' ')
Dsubprocess.py53 from time import monotonic as _time unknown
1144 endtime = _time() + timeout
1184 return endtime - _time()
1192 if skip_check_and_raise or _time() > endtime:
1202 endtime = _time() + timeout
1912 endtime = _time() + timeout
/third_party/typescript/src/harness/
DvfsUtil.ts58 private _time: number | Date | (() => number | Date); property in vfs.FileSystem
66 this._time = time;
140 const fs = new FileSystem(this.ignoreCase, { time: this._time });
143 fs._time = this._time;
159 const fs = new FileSystem(ignoreCase, { time: this._time });
172 let result = this._time;
177 this._time = value;
DvirtualFileSystemWithWatch.ts951 setTimeout(callback: TimeOutCallback, _time: number, ...args: any[]) {
996 setImmediate(callback: TimeOutCallback, _time: number, ...args: any[]) {
/third_party/python/Lib/test/test_asyncio/
Dutils.py345 self._time = 0
357 return self._time
362 self._time += advance
/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstbaseparse.c479 GstClockTime * _time, gint64 * _offset);
4395 gst_base_parse_locate_time (GstBaseParse * parse, GstClockTime * _time, in gst_base_parse_locate_time() argument
4405 g_return_val_if_fail (_time != NULL, GST_FLOW_ERROR); in gst_base_parse_locate_time()
4409 GST_TIME_ARGS (*_time)); in gst_base_parse_locate_time()
4413 time = *_time; in gst_base_parse_locate_time()
4428 *_time = GST_CLOCK_TIME_NONE; in gst_base_parse_locate_time()
4461 *_time = ltime; in gst_base_parse_locate_time()
4465 *_time = htime; in gst_base_parse_locate_time()
4511 *_time = newtime; in gst_base_parse_locate_time()
4513 *_time += dur; in gst_base_parse_locate_time()
[all …]
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dtz2icu.cpp127 Transition(int64_t _time, int32_t _type) { in Transition()
128 time = _time; in Transition()
798 int32_t _time, in set()
818 time = _time; in set()
/third_party/icu/icu4c/source/tools/tzcode/
Dtz2icu.cpp127 Transition(int64_t _time, int32_t _type) { in Transition()
128 time = _time; in Transition()
798 int32_t _time, in set()
818 time = _time; in set()
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/
Dtz2icu.cpp127 Transition(int64_t _time, int32_t _type) { in Transition()
128 time = _time; in Transition()
798 int32_t _time, in set()
818 time = _time; in set()
/third_party/python/Doc/library/
Dtime.rst116 .. _time-functions:
735 .. _time-clock-id-constants:
861 .. _time-timezone-constants:
/third_party/mksh/
DBuild.sh450 _time)
1856 ac_header sys/resource.h sys/types.h _time
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dqtdemux.c1763 gboolean set, QtDemuxStream ** _stream, gint * _index, gint64 * _time) in gst_qtdemux_find_sample() argument
1831 if (_time) in gst_qtdemux_find_sample()
1832 *_time = min_time; in gst_qtdemux_find_sample()
4905 GstClockTime * _start, GstClockTime * _stop, GstClockTime * _time) in gst_qtdemux_stream_segment_get_boundaries() argument
4963 *_time = time; in gst_qtdemux_stream_segment_get_boundaries()