Home
last modified time | relevance | path

Searched refs:timeInBounds (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/ui/src/frontend/
Dtime_scale_unittest.ts32 expect(scale.timeInBounds(50)).toEqual(true);
33 expect(scale.timeInBounds(0)).toEqual(true);
34 expect(scale.timeInBounds(100)).toEqual(true);
35 expect(scale.timeInBounds(-1)).toEqual(false);
36 expect(scale.timeInBounds(101)).toEqual(false);
Dnotes_panel.ts99 if ((note.noteType !== 'AREA' && !timeScale.timeInBounds(timestamp)) ||
101 !timeScale.timeInBounds(globals.state.areas[note.areaId].endSec) &&
102 !timeScale.timeInBounds(
150 if (timeScale.timeInBounds(timestamp)) {
Dtime_scale.ts71 timeInBounds(time: number): boolean { method in TimeScale