Home
last modified time | relevance | path

Searched refs:currentSelection (Results 1 – 11 of 11) sorted by relevance

/external/perfetto/ui/src/frontend/
Dtrack_group_panel.ts133 if (globals.state.currentSelection !== null) {
134 if (globals.state.currentSelection.kind === 'NOTE') {
135 const note = globals.state.notes[globals.state.currentSelection.id];
142 if (globals.state.currentSelection.kind === 'TIMESPAN') {
145 globals.state.currentSelection.startTs,
146 globals.state.currentSelection.endTs,
150 if (globals.state.currentSelection.kind === 'SLICE' &&
Dtrack_panel.ts143 const selection = globals.state.currentSelection;
245 if (globals.state.currentSelection !== null) {
246 if (globals.state.currentSelection.kind === 'NOTE') {
247 const note = globals.state.notes[globals.state.currentSelection.id];
254 if (globals.state.currentSelection.kind === 'TIMESPAN') {
257 globals.state.currentSelection.startTs,
258 globals.state.currentSelection.endTs,
262 if (globals.state.currentSelection.kind === 'SLICE' &&
Dkeyboard_event_handler.ts27 const selection = globals.state.currentSelection;
Dtime_selection_panel.ts98 const selection = globals.state.currentSelection;
Dnotes_panel.ts90 const selection = globals.state.currentSelection;
Dviewer_page.ts283 const curSelection = globals.state.currentSelection;
/external/perfetto/ui/src/common/
Dactions.ts252 state.currentSelection = {
285 if (state.currentSelection === null) return;
286 if (state.currentSelection.kind === 'NOTE' &&
287 state.currentSelection.id === args.id) {
288 state.currentSelection = null;
293 state.currentSelection = {
302 state.currentSelection = {
312 state.currentSelection = {
322 state.currentSelection = null;
Dstate.ts144 currentSelection: Selection|null; property
286 currentSelection: null,
/external/perfetto/ui/src/controller/
Dselection_controller.ts35 const selection = globals.state.currentSelection;
49 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/thread_state/
Dfrontend.ts97 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/cpu_slices/
Dfrontend.ts184 const selection = globals.state.currentSelection;