Home
last modified time | relevance | path

Searched refs:logEntry (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/v8/tools/system-analyzer/view/timeline/
Dtimeline-track-tick.mjs12 constructor(time, logEntry, depth) { argument
14 this._logEntry = logEntry;
21 static add(time, logEntry, stack, flames) { argument
23 const newFlame = new Flame(time, logEntry, depth)
42 get logEntry() { getter in Flame
86 const logEntry = codeEntry?.logEntry; constant
89 if (flameStack[flameStackIndex].logEntry === logEntry) continue;
95 Flame.add(tick.time, logEntry, flameStack, tmpFlames);
113 _drawAnnotations(logEntry, time) {
117 this._annotations.update(logEntry, time);
[all …]
Dtimeline-track-map.mjs40 _drawAnnotations(logEntry, time) {
41 if (!(logEntry instanceof MapLogEntry)) return;
42 if (!logEntry.edge) {
50 let current = logEntry;
85 buffer += this.drawOutgoingEdges(logEntry, 0.9, 3);
87 buffer += this.markSelectedMap(logEntry);
Dtimeline-track-stacked-base.mjs62 const logEntry = this._drawableItemToLogEntry(item);
68 return logEntry;
Dtimeline-track-base.mjs332 _drawAnnotations(logEntry, time) { argument
417 const logEntry = chunk.at(relativeIndex);
423 return logEntry;
596 filter(logEntry) { argument
597 return this._typesFilters.get(logEntry.type);
/third_party/node/deps/v8/tools/system-analyzer/
Dprocessor.mjs308 entry.logEntry = new SharedLibLogEntry(entry);
342 const logEntry = new DeoptLogEntry(
345 profCodeEntry.logEntry.add(logEntry);
346 this._deoptTimeline.push(logEntry);
347 this.addSourcePosition(profCodeEntry, logEntry);
348 logEntry.functionSourcePosition = logEntry.sourcePosition;
364 logEntry.sourcePosition = script.addSourcePosition(line, column, logEntry);
376 timestamp, profCodeEntry.logEntry, fbv_address, fbv_length,
379 profCodeEntry.logEntry.setFeedbackVector(fbv);
440 addSourcePosition(profileEntry, logEntry) { argument
[all …]
/third_party/typescript/tests/baselines/reference/
DjsEnumTagOnObjectFrozen.types24 >cbThing(type => { /** @type {LogEntry} */ const logEntry = { time: Date.now(), …
26 >type => { /** @type {LogEntry} */ const logEntry = { time: Date.now(), type, …
30 const logEntry = {
31 >logEntry : LogEntry
DjsEnumTagOnObjectFrozen.symbols26 const logEntry = {
27 >logEntry : Symbol(logEntry, Decl(usage.js, 12, 9))
/third_party/typescript/src/loggedIO/
DloggedIO.ts318 const logEntry = { path, codepage: 0, result: { contents: result, codepage: 0 } }; constant
319 recordLog!.filesRead.push(logEntry);
380 function callAndRecord<T, U>(underlyingResult: T, logArray: U[], logEntry: U): T {
382 (logEntry as any).result = underlyingResult;
384 logArray.push(logEntry);
/third_party/node/deps/v8/tools/system-analyzer/log/
Dcode.mjs52 return this._entry?.logEntry;
71 profilerEntry.logEntry = this;
130 return entries.map(each => each.logEntry);
Dic.mjs34 return this.codeEntry?.logEntry;
Dmap.mjs61 return this.entry?.logEntry;
/third_party/typescript/tests/cases/compiler/
DjsEnumTagOnObjectFrozen.ts41 const logEntry = {
/third_party/node/deps/v8/tools/system-analyzer/view/
Dproperty-link-table.mjs128 const logEntry = event.currentTarget.selectedOptions[0].data;
129 this.dispatchEvent(new FocusEvent(logEntry));