Home
last modified time | relevance | path

Searched refs:lengthEntries (Results 1 – 10 of 10) sorted by relevance

/development/tools/winscope/src/trace/
Dframe_map.ts20 readonly lengthEntries: number; property in FrameMap
54 lengthEntries: number,
61 this.lengthEntries = lengthEntries;
86 return this.getFramesRange({start: 0, end: this.lengthEntries});
108 if (entry < 0 || entry >= this.lengthEntries) {
117 if (entry < 0 || entry >= this.lengthEntries) {
144 end: Math.min(entries.end, this.lengthEntries),
Dframe_map_builder.ts21 private readonly lengthEntries: number; property in FrameMapBuilder
32 constructor(lengthEntries: number, lengthFrames: number) {
33 this.lengthEntries = lengthEntries;
36 this.entryToStartFrame = new Array<AbsoluteFrameIndex | undefined>(this.lengthEntries).fill(
39 this.entryToEndFrame = new Array<AbsoluteFrameIndex | undefined>(this.lengthEntries).fill(
75 this.lengthEntries,
Dtrace.ts75 readonly lengthEntries: number; property in Trace
123 this.lengthEntries = this.entriesRange.end - this.entriesRange.start;
139 if (frameMap.lengthEntries !== this.fullTrace.lengthEntries) {
154 … entry's index out of bounds. Input relative index: ${index}. Slice length: ${this.lengthEntries}.`
177 if (this.lengthEntries === 0) {
185 return this.getEntry(this.lengthEntries - 1);
206 if (this.lengthEntries === 0) {
227 if (this.lengthEntries === 0) {
247 if (this.lengthEntries === 0) {
252 return this.getEntry(this.lengthEntries - 1);
[all …]
Dframe_mapper.ts49 const frameMapBuilder = new FrameMapBuilder(trace.lengthEntries, trace.lengthEntries);
51 for (let i = 0; i < trace.lengthEntries; ++i) {
83 if (matches.lengthEntries > 0) {
84 const dstEntry = matches.getEntry(matches.lengthEntries - 1);
107 for (let srcEntryIndex = 0; srcEntryIndex < surfaceFlinger.lengthEntries; ++srcEntryIndex) {
126 for (let dstEntryIndex = 0; dstEntryIndex < transactions.lengthEntries; ++dstEntryIndex) {
167 if (windowManager.lengthEntries > 0) {
194 srcEntryIndex < windowManager.lengthEntries
208 if (windowManager.lengthEntries > 0) {
279 return new FrameMapBuilder(dstTrace.lengthEntries, lengthFrames);
Dtrace_entry_finder.ts43 if (frame.lengthEntries > 0) {
/development/tools/winscope/src/app/
Dtimeline_data.ts51 trace.lengthEntries === 1 &&
139 if (!trace || trace.lengthEntries === 0) {
165 if (trace.lengthEntries === 0) {
179 if (trace.lengthEntries === 0) {
188 if (currentIndex + 1 >= trace.lengthEntries) {
235 if (trace.lengthEntries === 0) {
251 if (trace.lengthEntries === 0) {
254 const candidate = trace.getEntry(trace.lengthEntries - 1);
267 .filter((trace) => trace.lengthEntries > 0)
Dtrace_pipeline.ts94 if (!screenRecording || screenRecording.lengthEntries === 0) {
/development/tools/winscope/src/viewers/viewer_protolog/
Dpresenter.ts114 for (let originalIndex = 0; originalIndex < this.trace.lengthEntries; ++originalIndex) {
/development/tools/winscope/src/app/components/timeline/
Dsingle_timeline_component.ts207 for (let i = 0; i < this.trace.lengthEntries; ++i) {
/development/tools/winscope/src/viewers/viewer_transactions/
Dpresenter.ts281 for (let originalIndex = 0; originalIndex < this.trace.lengthEntries; ++originalIndex) {