Lines Matching refs:timestamp
50 protected readonly timestamp: Timestamp, property in TraceEntry
63 return this.timestamp;
83 timestamp: Timestamp,
86 super(fullTrace, parser, index, timestamp, framesRange);
101 timestamp: Timestamp,
105 super(fullTrace, parser, index, timestamp, framesRange);
176 return this.getEntryInternal(index, (index, timestamp, frames) => {
181 timestamp,
195 return this.getEntryInternal(index, (index, timestamp, frames) => {
200 timestamp,
307 timestamp: Timestamp,
312 const firstGreater = this.findFirstGreaterEntry(timestamp);
322 findLastLowerEntry(timestamp: Timestamp): TraceEntryLazy<T> | undefined {
326 const firstGreaterOrEqual = this.findFirstGreaterOrEqualEntry(timestamp);
412 callback: (timestamp: Timestamp, index: RelativeEntryIndex) => void,
462 timestamp: Timestamp,
477 const timestamp = this.getFullTraceTimestamps()[absoluteIndex];
484 return makeEntry(absoluteIndex, timestamp, frames);