Searched refs:fullRange (Results 1 – 5 of 5) sorted by relevance
329 const fullRange = timelineData.getFullTimeRange(); constant371 if (newFrom.getValueNs() < fullRange.from.getValueNs()) {373 fullRange.to,376 newFrom = fullRange.from;379 if (newTo.getValueNs() > fullRange.to.getValueNs()) {381 fullRange.from,382 fullRange.to.minus(zoomToWidth.getValueNs()),384 newTo = fullRange.to;535 const fullRange = timelineData.getFullTimeRange(); constant551 if (newFrom.getValueNs() < fullRange.from.getValueNs()) {[all …]
123 @Input() fullRange: TimeRange | undefined; property in SliderComponent177 assertDefined(this.fullRange),188 assertDefined(this.fullRange);262 if (from.getValueNs() < assertDefined(this.fullRange).from.getValueNs()) {263 from = assertDefined(this.fullRange).from;293 if (to.getValueNs() > assertDefined(this.fullRange).to.getValueNs()) {294 to = assertDefined(this.fullRange).to;
70 component.fullRange = new TimeRange(time100, time200);100 component.fullRange = new TimeRange(time100, time200);253 component.zoomRange = component.fullRange;281 component.zoomRange = component.fullRange;365 component.zoomRange = component.fullRange;
133 let fullRange = timelineData.getFullTimeRange(); variable135 expect(fullRange.from).toBe(timestamp10);136 expect(fullRange.to).toBe(timestamp20);146 fullRange = timelineData.getFullTimeRange();147 expect(zoomRange).toBe(fullRange);
34 public fullRange: TimeRange, property in MiniTimelineDrawerInput