Home
last modified time | relevance | path

Searched refs:mouseXpos (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/ui/src/tracks/process_scheduling/
Dfrontend.ts41 private mouseXpos?: number;
168 ctx.fillRect(this.mouseXpos!, MARGIN_TOP, width + 16, RECT_HEIGHT);
171 ctx.fillText(line1, this.mouseXpos! + 8, 18);
172 ctx.fillText(line2, this.mouseXpos! + 8, 28);
178 this.mouseXpos = x;
208 this.mouseXpos = 0;
/external/perfetto/ui/src/tracks/cpu_freq/
Dfrontend.ts40 private mouseXpos = 0; property in CpuFreqTrack
168 ctx.fillRect(this.mouseXpos + 5, MARGIN_TOP, width + 16, RECT_HEIGHT);
171 ctx.fillText(text, this.mouseXpos + 10, centerY - 3);
176 ctx.fillText(idle, this.mouseXpos + 10, centerY + 11);
200 this.mouseXpos = x;
/external/perfetto/ui/src/tracks/cpu_slices/
Dfrontend.ts45 private mouseXpos?: number;
263 ctx.fillRect(this.mouseXpos!, MARGIN_TOP, width + 16, RECT_HEIGHT);
266 ctx.fillText(line1, this.mouseXpos! + 8, 18);
267 ctx.fillText(line2, this.mouseXpos! + 8, 28);
273 this.mouseXpos = x;
302 this.mouseXpos = 0;
/external/perfetto/ui/src/tracks/counter/
Dfrontend.ts39 private mouseXpos = 0; property in CounterTrack
159 ctx.fillRect(this.mouseXpos + 5, MARGIN_TOP, width + 16, RECT_HEIGHT);
163 ctx.fillText(text, this.mouseXpos + 8, MARGIN_TOP + RECT_HEIGHT / 2);
187 this.mouseXpos = x;