Searched refs:startMark (Results 1 – 8 of 8) sorted by relevance
/third_party/node/lib/ |
D | perf_hooks.js | 447 measure(name, startMark, endMark) { argument 456 startMark = startMark !== undefined ? `${startMark}` : ''; 457 _measure(name, startMark, endMark);
|
/third_party/typescript/src/compiler/ |
D | performanceCore.ts | 15 measure(name: string, startMark?: string, endMark?: string): void;
|
/third_party/node/doc/api/ |
D | perf_hooks.md | 131 ### `performance.measure(name[, startMark[, endMark]])` 137 description: Make `startMark` and `endMark` parameters optional. 141 * `startMark` {string} Optional. 148 `startMark` and `endMark`. 150 The `startMark` argument may identify any *existing* `PerformanceMark` in the 152 provided by the `PerformanceNodeTiming` class. If the named `startMark` does 153 not exist, then `startMark` is set to [`timeOrigin`][] by default.
|
/third_party/node/src/ |
D | node_perf.cc | 169 Utf8Value startMark(env->isolate(), args[1]); in Measure() local 174 uint64_t start = GetPerformanceMark(env, *startMark); in Measure() 178 PerformanceMilestone milestone = ToPerformanceMilestoneEnum(*startMark); in Measure()
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 2527 measure(measureName: string, startMark?: string, endMark?: string): void;
|
D | lib.dom.d.ts | 11581 measure(measureName: string, startMark?: string, endMark?: string): void;
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 2507 measure(measureName: string, startMark?: string, endMark?: string): void;
|
D | dom.generated.d.ts | 11561 measure(measureName: string, startMark?: string, endMark?: string): void;
|