Home
last modified time | relevance | path

Searched refs:timeEnd (Results 1 - 12 of 12) sorted by relevance

/third_party/node/test/parallel/
H A Dtest-console.js47 ['No such label \'noLabel\' for console.timeEnd()'],
50 ['No such label \'default\' for console.timeEnd()'],
58 console.timeEnd('noLabel');
61 console.timeEnd('label');
64 // on console.time(), console.countReset(), console.timeLog(), console.timeEnd()
67 console.timeEnd();
72 console.timeEnd();
78 assert.throws(() => console.timeEnd(Symbol('test')),
148 // Test console.time() and console.timeEnd() output
150 console.timeEnd('labe
[all...]
H A Dtest-repl.js769 ' timeEnd: [Function: timeEnd],',
/third_party/musl/Benchmark/musl/
H A Dlibc_dlopen.cpp42 gettimeofday(&timeEnd, nullptr); in ~ScopeTime()
43 cost = (timeEnd.tv_sec - timeStart.tv_sec) * THOUSAND + in ~ScopeTime()
44 static_cast<double>(timeEnd.tv_usec - timeStart.tv_usec) / THOUSAND; in ~ScopeTime()
48 struct timeval timeStart, timeEnd; member in ScopeTime
/third_party/musl/libc-test/src/functionalext/time/
H A Ddifftime.c31 time_t timeEnd = 20010; in difftime_0100() local
42 returnVal = difftime(timeEnd, timeStart); in difftime_0100()
57 time_t timeEnd = 20010; in difftime64_0100() local
68 returnVal = __difftime64(timeEnd, timeStart); in difftime64_0100()
/third_party/musl/libc-test/src/functionalext/supplement/time/
H A Ddifftime_sup.c473 time_t timeEnd = 20010; in difftime_0100() local
490 returnVal = difftime(timeEnd, timeStart); in difftime_0100()
/third_party/musl/src/network/linux/
H A Dgetaddrinfo.c85 struct timeval timeStart, timeEnd; in getaddrinfo_ext() local
224 int timeEndRet = gettimeofday(&timeEnd, NULL); in getaddrinfo_ext()
227 t_cost = COST_FOR_NANOSEC * (timeEnd.tv_sec - timeStart.tv_sec) + (timeEnd.tv_usec - timeStart.tv_usec); in getaddrinfo_ext()
/third_party/node/test/async-hooks/
H A Dtest-callback-error.js45 console.timeEnd('end case 1');
56 console.timeEnd('end case 2');
88 console.timeEnd('end case 3');
/third_party/node/deps/v8/tools/profview/
H A Dprofile-utils.js523 timeStart = -Infinity, timeEnd = Infinity) {
567 if (code.tm >= timeStart && code.tm <= timeEnd) {
573 if (code.tm >= timeStart && code.tm <= timeEnd) {
581 if (code.deopt.tm >= timeStart && code.deopt.tm <= timeEnd) {
/third_party/node/deps/v8/src/inspector/
H A Dv8-console-message.h129 double timeEnd(int contextId, const String16& id);
H A Dv8-console-message.cc632 double V8ConsoleMessageStorage::timeEnd(int contextId, const String16& id) { in timeEnd() function in v8_inspector::V8ConsoleMessageStorage
H A Dv8-console.cc436 helper.consoleMessageStorage()->timeEnd(helper.contextId(), title); in timeEndFunction()
/third_party/node/lib/internal/console/
H A Dconstructor.js408 timeEnd(label = 'default') {
411 const found = timeLogImpl(this, 'timeEnd', label);

Completed in 9 milliseconds