Home
last modified time | relevance | path

Searched refs:startTime (Results 1 - 25 of 129) sorted by relevance

123456

/third_party/node/test/fixtures/wpt/user-timing/
H A Dmeasure-with-dict.any.js16 [{ entryType: "measure", name: "measure1", detail: null, startTime: 0 },
17 { entryType: "measure", name: "measure2", detail: null, startTime: 0 },
18 { entryType: "measure", name: "measure3", detail: null, startTime: 0 },
20 { entryType: "measure", name: "measure5", detail: null, startTime: 0 },
21 { entryType: "measure", name: "measure6", detail: null, startTime: timeStamp1 },
22 { entryType: "measure", name: "measure7", detail: null, startTime: timeStamp1, duration: timeStamp2 - timeStamp1 },
23 { entryType: "measure", name: "measure8", detail: null, startTime: 0 },
24 { entryType: "measure", name: "measure9", detail: null, startTime: 0 },
25 { entryType: "measure", name: "measure10", detail: null, startTime: timeStamp1 },
26 { entryType: "measure", name: "measure11", detail: null, startTime
[all...]
H A Dmeasure-l3.any.js4 return entry.startTime + entry.duration;
10 const markEntry = performance.mark("mark", {startTime: 123});
12 assert_equals(measureEntry.startTime, 0);
13 assert_equals(endTime(measureEntry), markEntry.startTime);
19 const markEntry = performance.mark("mark", {startTime: 123});
23 assert_equals(measureEntry.startTime, markEntry.startTime);
31 const markEntry = performance.mark("mark", {startTime: 123});
33 assert_equals(endTime(measureEntry), markEntry.startTime);
34 assert_equals(measureEntry.startTime, markEntr
[all...]
/third_party/node/test/parallel/
H A Dtest-performance-resourcetimingbufferfull.js8 function createTimingInfo(startTime) {
10 startTime: startTime,
11 endTime: startTime,
61 assert.strictEqual(entries[0].startTime, 2);
91 assert.strictEqual(entries[0].startTime, 4);
92 assert.strictEqual(entries[1].startTime, 5);
122 assert.strictEqual(entries[0].startTime, 7);
123 assert.strictEqual(entries[1].startTime, 8);
H A Dtest-perf-hooks-resourcetiming.js24 startTime = 0,
51 startTime,
137 assert.strictEqual(resource.startTime, timingInfo.startTime);
159 startTime: 0,
183 startTime: 0,
207 startTime: 0,
240 startTime: 50,
261 assert.strictEqual(resource.startTime, timingInfo.startTime);
[all...]
H A Dtest-fs-stat-bigint.js98 const startTime = process.hrtime.bigint();
102 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6);
153 const startTime = process.hrtime.bigint();
157 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6);
185 const startTime = process.hrtime.bigint();
189 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6);
208 const startTime = process.hrtime.bigint();
212 const allowableDelta = Math.ceil(Number(endTime - startTime) / 1e6);
/third_party/node/deps/npm/node_modules/graceful-fs/
H A Dgraceful-fs.js117 function go$readFile (path, options, cb, startTime) {
120 enqueue([go$readFile, [path, options, cb], err, startTime || Date.now(), Date.now()])
137 function go$writeFile (path, data, options, cb, startTime) {
140 enqueue([go$writeFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()])
158 function go$appendFile (path, data, options, cb, startTime) {
161 enqueue([go$appendFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()])
180 function go$copyFile (src, dest, flags, cb, startTime) {
183 enqueue([go$copyFile, [src, dest, flags, cb], err, startTime || Date.now(), Date.now()])
200 ? function go$readdir (path, options, cb, startTime) {
202 path, options, cb, startTime
[all...]
/third_party/node/deps/npm/node_modules/npm-registry-fetch/lib/
H A Dcheck-response.js12 async ({ method, uri, res, startTime, auth, opts }) => {
19 logRequest(method, res, startTime)
31 return checkErrors(method, res, startTime, opts)
33 res.body.on('end', () => logRequest(method, res, startTime, opts))
43 function logRequest (method, res, startTime) {
44 const elapsedTime = Date.now() - startTime
57 function checkErrors (method, res, startTime, opts) {
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DCollationPerformanceTest.java279 long startTime = 0; in doQSort()
282 startTime = System.currentTimeMillis(); in doQSort()
287 startTime = System.currentTimeMillis(); in doQSort()
292 startTime = System.currentTimeMillis(); in doQSort()
297 startTime = System.currentTimeMillis(); in doQSort()
301 long elapsedTime = endTime - startTime; in doQSort()
323 long startTime = 0; in doBinarySearch()
340 startTime = System.currentTimeMillis(); in doBinarySearch()
365 elapsedTime = System.currentTimeMillis() - startTime; in doBinarySearch()
371 startTime in doBinarySearch()
[all...]
/third_party/node/lib/internal/perf/
H A Dusertiming.js69 const startTime = options.startTime ?? now();
70 validateNumber(startTime, 'startTime');
71 if (startTime < 0)
72 throw new ERR_PERFORMANCE_INVALID_TIMESTAMP(startTime);
73 markTimings.set(name, startTime);
79 super(name, 'mark', startTime, 0, detail);
H A Dresource_timing.js41 get startTime() {
42 return this[kTimingInfo].startTime;
46 return this[kTimingInfo].endTime - this[kTimingInfo].startTime;
126 startTime: this.startTime,
H A Dobserve.js174 return first.startTime - second.startTime;
487 return first.startTime - second.startTime;
491 function observerCallback(name, type, startTime, duration, details) {
496 startTime,
540 startTime: now(),
549 const startTime = ctx.startTime;
553 startTime,
[all...]
H A Dperformance_entry.js39 get startTime() { return this[kStart]; }
60 startTime: this.startTime,
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DSimpleTimeZone.java117 * @param startTime The daylight savings starting time in local wall
134 int startMonth, int startDay, int startDayOfWeek, int startTime, in SimpleTimeZone()
139 startTime, WALL_TIME, in SimpleTimeZone()
161 * @param startTime The daylight savings starting time in local wall
164 * @param startTimeMode The mode of the start time specified by startTime.
182 int startDayOfWeek, int startTime, in SimpleTimeZone()
190 startTime, startTimeMode, in SimpleTimeZone()
209 * @param startTime The daylight savings starting time in local wall
227 int startMonth, int startDay, int startDayOfWeek, int startTime, in SimpleTimeZone()
233 startTime, WALL_TIM in SimpleTimeZone()
133 SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int endMonth, int endDay, int endDayOfWeek, int endTime) SimpleTimeZone() argument
180 SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int startTimeMode, int endMonth, int endDay, int endDayOfWeek, int endTime, int endTimeMode,int dstSavings) SimpleTimeZone() argument
226 SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int endMonth, int endDay, int endDayOfWeek, int endTime, int dstSavings) SimpleTimeZone() argument
949 private int startTime; global() field in SimpleTimeZone
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DSimpleTimeZone.java114 * @param startTime The daylight savings starting time in local wall
130 int startMonth, int startDay, int startDayOfWeek, int startTime, in SimpleTimeZone()
135 startTime, WALL_TIME, in SimpleTimeZone()
157 * @param startTime The daylight savings starting time in local wall
160 * @param startTimeMode The mode of the start time specified by startTime.
177 int startDayOfWeek, int startTime, in SimpleTimeZone()
185 startTime, startTimeMode, in SimpleTimeZone()
204 * @param startTime The daylight savings starting time in local wall
221 int startMonth, int startDay, int startDayOfWeek, int startTime, in SimpleTimeZone()
227 startTime, WALL_TIM in SimpleTimeZone()
129 SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int endMonth, int endDay, int endDayOfWeek, int endTime) SimpleTimeZone() argument
175 SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int startTimeMode, int endMonth, int endDay, int endDayOfWeek, int endTime, int endTimeMode,int dstSavings) SimpleTimeZone() argument
220 SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int endMonth, int endDay, int endDayOfWeek, int endTime, int dstSavings) SimpleTimeZone() argument
927 private int startTime; global() field in SimpleTimeZone
[all...]
/third_party/icu/icu4c/source/test/perf/collationperf/
H A Dcollperf.cpp385 unsigned long startTime = timeGetTime(); in doKeyGen() local
425 unsigned long elapsedTime = timeGetTime() - startTime; in doKeyGen()
489 unsigned long startTime = timeGetTime(); in doBinarySearch() local
521 elapsedTime = timeGetTime() - startTime; in doBinarySearch()
528 unsigned long startTime = timeGetTime(); in doBinarySearch() local
573 elapsedTime = timeGetTime() - startTime; in doBinarySearch()
579 unsigned long startTime = timeGetTime(); in doBinarySearch() local
629 elapsedTime = timeGetTime() - startTime; in doBinarySearch()
635 unsigned long startTime = timeGetTime(); in doBinarySearch() local
675 elapsedTime = timeGetTime() - startTime; in doBinarySearch()
712 unsigned long startTime = timeGetTime(); doQSort() local
843 unsigned long startTime = timeGetTime(); doForwardIterTest() local
1006 unsigned long startTime = timeGetTime(); doBackwardIterTest() local
[all...]
/third_party/node/test/fixtures/wpt/user-timing/resources/
H A Duser-timing-helper.js21 function checkEntry(entry, {name, entryType, startTime, detail, duration}) {
24 if (startTime !== undefined)
25 assert_equals(entry.startTime, startTime);
/third_party/vk-gl-cts/framework/common/
H A DtcuCPUWarmup.cpp99 const deUint64 startTime = deGetMicroseconds(); in warmupCPU() local
101 times[i] = (deInt64)(deGetMicroseconds() - startTime); in warmupCPU()
125 const deUint64 startTime = deGetMicroseconds(); in warmupCPU() local
127 latestTimes[measurementNdx % numConsecutiveMeasurementsRequired] = (deInt64)(deGetMicroseconds() - startTime); in warmupCPU()
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dvtzone.h405 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime,
410 UDate startTime, UDate untilTime, UErrorCode& status) const;
414 UDate startTime, UDate untilTime, UErrorCode& status) const;
421 UDate startTime, UDate untilTime, UErrorCode& status) const;
424 UDate startTime, UErrorCode& status) const;
427 int32_t fromOffset, int32_t toOffset, UDate startTime, UErrorCode& status) const;
/third_party/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperf.cpp67 unsigned long startTime = timeGetTime();
83 startTime = timeGetTime();
90 elapsedTime = timeGetTime()-startTime;
114 startTime = timeGetTime();
126 elapsedTime = timeGetTime()-startTime;
/third_party/icu/icu4c/source/i18n/
H A Dsimpletz.cpp70 startTime(0), in SimpleTimeZone()
167 this->startTime = savingsStartTime; in construct()
215 startTime = right.startTime; in operator =()
316 startTime = time; in setStartRule()
482 (int8_t)startDay, startTime); in getOffset()
761 startTime == that->startTime && in hasSameRules()
882 if (startTime < 0 || startTime > U_MILLIS_PER_DA in decodeStartRule()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dsimpletz.cpp70 startTime(0), in SimpleTimeZone()
167 this->startTime = savingsStartTime; in construct()
215 startTime = right.startTime; in operator =()
316 startTime = time; in setStartRule()
482 (int8_t)startDay, startTime); in getOffset()
761 startTime == that->startTime && in hasSameRules()
882 if (startTime < 0 || startTime > U_MILLIS_PER_DA in decodeStartRule()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dsimpletz.cpp70 startTime(0), in SimpleTimeZone()
167 this->startTime = savingsStartTime; in construct()
215 startTime = right.startTime; in operator =()
316 startTime = time; in setStartRule()
482 (int8_t)startDay, startTime); in getOffset()
763 startTime == that->startTime && in hasSameRules()
884 if (startTime < 0 || startTime > U_MILLIS_PER_DA in decodeStartRule()
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Dvtzone.h402 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime,
407 UDate startTime, UDate untilTime, UErrorCode& status) const;
411 UDate startTime, UDate untilTime, UErrorCode& status) const;
418 UDate startTime, UDate untilTime, UErrorCode& status) const;
421 UDate startTime, UErrorCode& status) const;
424 int32_t fromOffset, int32_t toOffset, UDate startTime, UErrorCode& status) const;
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dvtzone.h402 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime,
407 UDate startTime, UDate untilTime, UErrorCode& status) const;
411 UDate startTime, UDate untilTime, UErrorCode& status) const;
418 UDate startTime, UDate untilTime, UErrorCode& status) const;
421 UDate startTime, UErrorCode& status) const;
424 int32_t fromOffset, int32_t toOffset, UDate startTime, UErrorCode& status) const;
/third_party/vulkan-loader/scripts/
H A Dloader_genvk.py22 startTime = None variable
25 global startTime
27 startTime = time.process_time()
30 global startTime
33 write(msg, endTime - startTime, file=sys.stderr)
34 startTime = None

Completed in 21 milliseconds

123456