Home
last modified time | relevance | path

Searched refs:TimeRange (Results 1 – 23 of 23) sorted by relevance

/development/tools/winscope/src/app/components/timeline/mini-timeline/
Dslider_component_test.ts30 import {TimeRange} from 'common/time/time';
70 component.fullRange = new TimeRange(time100, time200);
71 component.zoomRange = new TimeRange(time125, time175);
100 component.fullRange = new TimeRange(time100, time200);
101 component.zoomRange = new TimeRange(time125, time126);
173 let lastZoomUpdate: TimeRange | undefined = undefined;
190 const finalZoom = assertDefined<TimeRange>(lastZoomUpdate);
203 let lastZoomUpdate: TimeRange | undefined = undefined;
220 const finalZoom = assertDefined<TimeRange>(lastZoomUpdate);
230 let lastZoomUpdate: TimeRange | undefined = undefined;
[all …]
Dslider_component.ts33 import {TimeRange, Timestamp} from 'common/time/time';
124 @Input() fullRange: TimeRange | undefined;
125 @Input() zoomRange: TimeRange | undefined;
129 @Output() readonly onZoomChanged = new EventEmitter<TimeRange>();
143 const zoomRange = changes['zoomRange'].currentValue as TimeRange;
154 syncDragPositionTo(zoomRange: TimeRange) {
249 this.onZoomChanged.emit(new TimeRange(from, to));
271 this.onZoomChanged.emit(new TimeRange(from, to));
301 this.onZoomChanged.emit(new TimeRange(from, to));
Dmini_timeline_component_test.ts32 import {TimeRange, Timestamp} from 'common/time/time';
130 const expectedZoomRange = new TimeRange(timestamp15, timestamp16);
145 const initialZoom = new TimeRange(timestamp15, timestamp16);
150 const newZoom = new TimeRange(timestamp10, timestamp16);
173 const zoom = new TimeRange(timestamp15, timestamp16);
188 const initialZoom = new TimeRange(timestamp15, timestamp16);
199 const zoom = new TimeRange(timestamp15, timestamp16);
240 const initialZoom = new TimeRange(timestamp15, timestamp16);
256 const initialZoom = new TimeRange(timestamp700, timestamp810);
279 const initialZoom = new TimeRange(timestamp10, timestamp1000);
[all …]
Dtransformer.ts18 import {TimeRange, Timestamp} from 'common/time/time';
29 private fromRange: TimeRange,
Dmini_timeline_component.ts32 import {TimeRange, Timestamp} from 'common/time/time';
127 @Input() initialZoom: TimeRange | undefined;
139 range: TimeRange;
158 private lastRightClickTimeRange: TimeRange | undefined;
177 this.lastRightClickTimeRange = new TimeRange(
315 onZoomChanged(zoom: TimeRange) {
323 onSliderZoomChanged(zoom: TimeRange) {
514 this.onZoomChanged(new TimeRange(newFrom, newTo));
589 this.onZoomChanged(new TimeRange(newFrom, newTo));
Dtransformer_test.ts18 import {TimeRange} from 'common/time/time';
23 const fromRange = new TimeRange(
73 const fromRange = new TimeRange(
/development/tools/winscope/src/app/
Dtimeline_data.ts17 import {TimeRange, Timestamp} from 'common/time/time';
35 private explicitlySetSelection?: TimeRange;
36 private explicitlySetZoomRange?: TimeRange;
38 private lastReturnedFullTimeRange?: TimeRange;
198 getFullTimeRange(): TimeRange {
205 const fullTimeRange = new TimeRange(
223 getSelectionTimeRange(): TimeRange {
231 setSelectionTimeRange(selection: TimeRange) {
235 getZoomRange(): TimeRange {
243 setZoom(zoomRange: TimeRange) {
Dloaded_parsers.ts20 import {INVALID_TIME_NS, TimeRange, Timestamp} from 'common/time/time';
350 return new TimeRange(timestamps[0], timestamps[timestamps.length - 1]);
352 .filter((range) => range !== undefined) as TimeRange[];
477 ranges: readonly TimeRange[],
478 ): TimeRange | undefined {
488 return new TimeRange(curr.to, next.from);
Dtimeline_data_test.ts19 import {TimeRange} from 'common/time/time';
378 timelineData.setSelectionTimeRange(new TimeRange(timestamp0, timestamp5));
394 timelineData.setZoom(new TimeRange(timestamp0, timestamp5));
Dloaded_parsers_test.ts20 import {TimeRange} from 'common/time/time';
201 const timeGap = new TimeRange(timeGapFrom, timeGapTo);
/development/tools/winscope/src/app/components/timeline/mini-timeline/drawer/
Dmini_timeline_drawer_output.ts1 import {TimeRange, Timestamp} from 'common/time/time';
6 public selection: TimeRange,
Dmini_timeline_drawer_input.ts22 import {TimeRange, Timestamp} from 'common/time/time';
34 public fullRange: TimeRange,
36 public selection: TimeRange,
37 public zoomRange: TimeRange,
Dmini_canvas_drawer_data.ts19 import {TimeRange} from 'common/time/time';
53 new TimeRange(
/development/tools/winscope/src/app/components/timeline/
Dtimeline_utils.ts18 import {TimeRange, Timestamp} from 'common/time/time';
45 fullTimeRange: TimeRange,
47 ): TimeRange | undefined {
114 return new TimeRange(startTime, finishTime);
Dtimeline_component.ts43 import {TimeRange, Timestamp, TimestampFormatType} from 'common/time/time';
516 initialZoom: TimeRange | undefined = undefined;
595 this.initialZoom = new TimeRange(
937 this.toggleBookmarkRange(new TimeRange(currentTimestamp, currentTimestamp));
941 toggleBookmarkRange(range: TimeRange, rangeContainsBookmark?: boolean) {
Dtimeline_component_test.ts40 import {TimeRange} from 'common/time/time';
738 new TimeRange(time100, time112),
/development/tools/winscope/src/common/time/
Dtime.ts19 export class TimeRange { class
60 in(range: TimeRange): boolean {
Dtime_test.ts18 import {TimeRange} from './time';
231 const range = new TimeRange(
/development/tools/winscope/src/messaging/
Duser_warnings.ts17 import {TimeRange} from 'common/time/time';
56 private readonly timeGap?: TimeRange,
/development/tools/winscope/src/app/components/timeline/expanded-timeline/
Dabstract_timeline_row_component.ts27 import {TimeRange} from 'common/time/time';
39 @Input() selectionRange: TimeRange | undefined;
Dtransition_timeline_component.ts22 import {TimeRange, Timestamp} from 'common/time/time';
60 @Input() fullRange: TimeRange | undefined;
Ddefault_timeline_row_component_test.ts30 import {TimeRange} from 'common/time/time';
282 component.selectionRange = new TimeRange(
Dtransition_timeline_component_test.ts31 import {TimeRange, Timestamp} from 'common/time/time';
56 const range10to110 = new TimeRange(time10, time110);
57 const range0to160 = new TimeRange(time0, time160);