Searched refs:rangeRect (Results 1 – 4 of 4) sorted by relevance
| /developtools/smartperf_host/ide/src/trace/component/trace/timer-shaft/ |
| D | RangeRuler.ts | 86 public rangeRect: Rect; property in RangeRuler 150 this.rangeRect = new Rect(range.startX, frame.y, range.endX - range.startX, frame.height); 196 this.range.startX = this.rangeRect.x; 197 this.range.endX = this.rangeRect.x + this.rangeRect.width; 268 …this.rangeRect.x = this.markAObj.frame.x < this.markBObj.frame.x ? this.markAObj.frame.x : this.ma… 269 this.rangeRect.width = Math.abs(this.markBObj.frame.x - this.markAObj.frame.x); 270 …this.context2D.fillRect(this.rangeRect.x, this.rangeRect.y, this.rangeRect.width, this.rangeRect.h… 274 this.context2D.fillRect(this.frame.x, this.frame.y, this.rangeRect.x, this.rangeRect.height); 276 this.rangeRect.x + this.rangeRect.width, 278 this.frame.width - this.rangeRect.width, [all …]
|
| /developtools/smartperf_host/ide/test/trace/component/trace/timer-shaft/ |
| D | RangeRuler.test.ts | 191 rangeRuler.rangeRect = jest.fn(() => true); 192 rangeRuler.rangeRect.containsWithPadding = jest.fn(() => true); 214 rangeRuler.rangeRect = jest.fn(() => true); 215 rangeRuler.rangeRect.containsWithPadding = jest.fn(() => false); 218 rangeRuler.rangeRect.containsWithMargin = jest.fn(() => false); 257 rangeRuler.rangeRect = jest.fn(() => true); 258 rangeRuler.rangeRect.containsWithPadding = jest.fn(() => true);
|
| /developtools/smartperf_host/ide/src/trace/database/ui-worker/ |
| D | ProcedureWorkerTimeline.ts | 381 public rangeRect: Rect; 424 this.rangeRect = new Rect(range.startX, frame.y, range.endX - range.startX, frame.height); 484 this.range.startX = this.rangeRect.x; 485 this.range.endX = this.rangeRect.x + this.rangeRect.width; 524 …this.rangeRect.x = this.markA.frame.x < this.markB.frame.x ? this.markA.frame.x : this.markB.frame… 525 this.rangeRect.width = Math.abs(this.markB.frame.x - this.markA.frame.x); 526 … this.c.fillRect(this.rangeRect.x, this.rangeRect.y, this.rangeRect.width, this.rangeRect.height); 530 this.c.fillRect(this.frame.x, this.frame.y, this.rangeRect.x, this.rangeRect.height); 532 this.rangeRect.x + this.rangeRect.width, 534 this.frame.width - this.rangeRect.width, [all …]
|
| /developtools/smartperf_host/ide/src/trace/component/trace/ |
| D | TimerShaftElement.ts | 206 this._rangeRuler.rangeRect = new Rect(0, 25, this.canvas?.clientWidth || 0, 75);
|