Searched refs:timeEnd (Results 1 - 12 of 12) sorted by relevance
/third_party/node/test/parallel/ |
H A D | test-console.js | 47 ['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 D | test-repl.js | 769 ' timeEnd: [Function: timeEnd],',
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_dlopen.cpp | 42 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 D | difftime.c | 31 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 D | difftime_sup.c | 473 time_t timeEnd = 20010; in difftime_0100() local 490 returnVal = difftime(timeEnd, timeStart); in difftime_0100()
|
/third_party/musl/src/network/linux/ |
H A D | getaddrinfo.c | 85 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 D | test-callback-error.js | 45 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 D | profile-utils.js | 523 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 D | v8-console-message.h | 129 double timeEnd(int contextId, const String16& id);
|
H A D | v8-console-message.cc | 632 double V8ConsoleMessageStorage::timeEnd(int contextId, const String16& id) { in timeEnd() function in v8_inspector::V8ConsoleMessageStorage
|
H A D | v8-console.cc | 436 helper.consoleMessageStorage()->timeEnd(helper.contextId(), title); in timeEndFunction()
|
/third_party/node/lib/internal/console/ |
H A D | constructor.js | 408 timeEnd(label = 'default') { 411 const found = timeLogImpl(this, 'timeEnd', label);
|
Completed in 9 milliseconds