Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/test/trace/component/trace/timer-shaft/
DRangeRuler.test.ts254 rangeRuler.movingMark = jest.fn(() => false);
255 rangeRuler.movingMark.frame = jest.fn(() => false);
256 rangeRuler.movingMark.frame.x = jest.fn(() => false);
259 rangeRuler.movingMark.inspectionFrame = jest.fn(() => false);
260 rangeRuler.movingMark.inspectionFrame.x = jest.fn(() => false);
270 rangeRuler.movingMark.inspectionFrame.x = jest.fn(() => false);
/developtools/smartperf_host/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts95 movingMark: Mark | undefined | null; property in RangeRuler
297 this.movingMark = this.markAObj;
298 this.mouseDownMovingMarkX = this.movingMark.frame.x || 0;
300 this.movingMark = this.markBObj;
301 this.mouseDownMovingMarkX = this.movingMark.frame.x || 0;
303 this.movingMark = null;
322 this.movingMark = null;
401 if (this.movingMark) {
404 this.movingMark.frame.x = result;
406 this.movingMark.frame.x = 0;
[all …]
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerTimeline.ts387 movingMark: Mark | undefined | null;
549 this.movingMark = this.markA;
550 this.mouseDownMovingMarkX = this.movingMark.frame.x || 0;
552 this.movingMark = this.markB;
553 this.mouseDownMovingMarkX = this.movingMark.frame.x || 0;
555 this.movingMark = null;
596 this.movingMark = null;
631 if (this.movingMark) {
634 this.movingMark.frame.x = result;
636 this.movingMark.frame.x = 0;
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DRangeSelect.ts36 private movingMark: string = ''; property in RangeSelect
222 let markA = this.movingMark == 'markA' ? mouseX : this.mark.startMark;
223 let markB = this.movingMark == 'markB' ? mouseX : this.mark.endMark;
266 this.movingMark = x1 < x2 ? 'markA' : 'markB';
270 this.movingMark = x2 < x1 ? 'markA' : 'markB';