Home
last modified time | relevance | path

Searched refs:canvasDrawer (Results 1 – 6 of 6) sorted by relevance

/development/tools/winscope/src/app/components/timeline/expanded-timeline/
Dcanvas_drawer_test.ts26 const canvasDrawer = new CanvasDrawer(); constant
27 canvasDrawer.setCanvas(actualCanvas);
28 canvasDrawer.drawRect(new Rect(10, 10, 10, 10), '#333333', 1.0);
32 canvasDrawer.clear();
41 const canvasDrawer = new CanvasDrawer(); constant
42 canvasDrawer.setCanvas(actualCanvas);
43 canvasDrawer.drawRect(new Rect(10, 10, 10, 10), '#333333', 1.0);
57 const canvasDrawer = new CanvasDrawer(); constant
58 canvasDrawer.setCanvas(actualCanvas);
59 canvasDrawer.drawRect(new Rect(10, 10, 10, 10), '#333333', 0.5);
[all …]
Ddefault_timeline_row_component_test.ts73 component.canvasDrawer,
80 const rectHeight = component.canvasDrawer.getScaledCanvasHeight();
85 component.canvasDrawer.getScaledCanvasWidth() - rectWidth;
113 const drawRectSpy = spyOn(component.canvasDrawer, 'drawRect');
118 const rectHeight = component.canvasDrawer.getScaledCanvasHeight();
123 component.canvasDrawer.getScaledCanvasWidth() - rectWidth;
140 component.canvasDrawer,
144 component.canvasDrawer,
155 offsetY: component.canvasDrawer.getScaledCanvasHeight() / 2,
165 const rectHeight = component.canvasDrawer.getScaledCanvasHeight();
[all …]
Ddefault_timeline_row_component.ts63 return this.canvasDrawer.getScaledCanvasHeight();
68 this.canvasDrawer.getScaledCanvasWidth() - this.getEntryWidth(),
133 this.canvasDrawer.drawRect(rect, this.color, 1.0);
134 this.canvasDrawer.drawRectBorder(rect);
171 this.canvasDrawer.drawRect(rect, this.color, 0.2);
180 this.canvasDrawer.drawRect(rect, this.color, 1.0);
181 this.canvasDrawer.drawRectBorder(rect);
Dtransition_timeline_component_test.ts129 const drawRectSpy = spyOn(component.canvasDrawer, 'drawRect');
137 const width = component.canvasDrawer.getScaledCanvasWidth();
200 const drawRectSpy = spyOn(component.canvasDrawer, 'drawRect');
208 const width = component.canvasDrawer.getScaledCanvasWidth();
227 const drawRectSpy = spyOn(component.canvasDrawer, 'drawRect');
228 const drawRectBorderSpy = spyOn(component.canvasDrawer, 'drawRectBorder');
241 const width = component.canvasDrawer.getScaledCanvasWidth();
256 const drawRectSpy = spyOn(component.canvasDrawer, 'drawRect');
264 const width = component.canvasDrawer.getScaledCanvasWidth();
276 component.canvasDrawer,
[all …]
Dtransition_timeline_component.ts74 return this.canvasDrawer.getScaledCanvasWidth();
173 this.canvasDrawer.drawRectBorder(rect);
203 (this.canvasDrawer.getScaledCanvasHeight() - 2 * borderPadding) /
231 this.canvasDrawer.drawRect(rect, this.color, alpha);
255 this.canvasDrawer.drawRect(rect, this.color, alpha);
256 this.canvasDrawer.drawRectBorder(rect);
Dabstract_timeline_row_component.ts52 canvasDrawer = new CanvasDrawer(); property in AbstractTimelineRowComponent
113 this.canvasDrawer.setCanvas(this.getCanvas());
183 this.canvasDrawer.clear();