Searched refs:mouseXpos (Results 1 – 4 of 4) sorted by relevance
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | frontend.ts | 41 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/ |
D | frontend.ts | 40 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/ |
D | frontend.ts | 45 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/ |
D | frontend.ts | 39 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;
|