Home
last modified time | relevance | path

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

/external/perfetto/ui/src/frontend/
Dkeyboard_event_handler.ts34 const selection = globals.state.currentSelection;
114 if (!globals.state.currentSelection ||
115 globals.state.currentSelection.kind !== 'CHROME_SLICE') {
118 const sliceId = globals.state.currentSelection.id;
140 if (!globals.state.currentSelection ||
141 globals.state.currentSelection.kind !== 'CHROME_SLICE') {
145 const sliceId = globals.state.currentSelection.id;
169 const selection = globals.state.currentSelection;
200 globals.state.currentSelection !== null) {
201 const tracks = globals.state.currentSelection.trackId ?
[all …]
Dtrack_group_panel.ts89 const selection = globals.state.currentSelection;
161 const selection = globals.state.currentSelection;
220 if (globals.state.currentSelection !== null) {
221 if (globals.state.currentSelection.kind === 'NOTE') {
222 const note = globals.state.notes[globals.state.currentSelection.id];
232 if (globals.state.currentSelection.kind === 'SLICE' &&
Dtrack_panel.ts39 const selection = globals.state.currentSelection;
102 globals.state.currentSelection !== null &&
103 globals.state.currentSelection.kind === 'AREA' ?
294 const selection = globals.state.currentSelection;
342 if (globals.state.currentSelection !== null) {
343 if (globals.state.currentSelection.kind === 'NOTE') {
344 const note = globals.state.notes[globals.state.currentSelection.id];
355 if (globals.state.currentSelection.kind === 'SLICE' &&
Dviewer_page.ts42 const selection = globals.state.currentSelection;
144 const selection = globals.state.currentSelection;
188 const selection = globals.state.currentSelection;
Dflow_events_panel.ts41 const selection = globals.state.currentSelection;
115 const selection = globals.state.currentSelection;
Daggregation_panel.ts111 const selection = globals.state.currentSelection;
Dindex.ts158 if (globals.state.currentSelection?.kind === 'CHROME_SLICE') {
159 const sliceId = globals.state.currentSelection.id;
Dtime_selection_panel.ts133 const selection = globals.state.currentSelection;
Ddetails_panel.ts192 const curSelection = globals.state.currentSelection;
Dnotes_panel.ts110 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/common/
Dactions.ts474 state.currentSelection = {
501 if (state.currentSelection === null ||
502 state.currentSelection.kind !== 'AREA') {
510 areaId: state.currentSelection.areaId,
514 state.currentSelection.noteId = id;
518 const selection = state.currentSelection;
599 if (state.currentSelection === null) return;
600 if (state.currentSelection.kind === 'NOTE' &&
601 state.currentSelection.id === args.id) {
602 state.currentSelection = null;
[all …]
Dstate.ts304 currentSelection: Selection|null; property
824 currentSelection: null,
/external/perfetto/ui/src/tracks/thread_state/
Dfrontend.ts85 const currentSelection = globals.state.currentSelection; constant
86 const isSelected = currentSelection &&
87 currentSelection.kind === 'THREAD_STATE' &&
88 currentSelection.id === data.ids[i];
/external/perfetto/ui/src/tracks/chrome_slices/
Dfrontend.ts97 const currentSelection = globals.state.currentSelection; constant
98 const isSelected = currentSelection &&
99 currentSelection.kind === 'CHROME_SLICE' &&
100 currentSelection.id !== undefined && currentSelection.id === sliceId;
/external/perfetto/ui/src/controller/
Dselection_controller.ts52 const selection = globals.state.currentSelection;
180 if (selection === globals.state.currentSelection) {
261 const selection = globals.state.currentSelection;
297 const selection = globals.state.currentSelection;
Dcpu_profile_controller.ts37 const selection = globals.state.currentSelection;
Dflow_events_controller.ts186 const selection = globals.state.currentSelection;
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/trackselection/
DAdaptiveTrackSelection.java667 int[] currentSelection = new int[logBitrates.length]; in getAllocationCheckpoints() local
668 setCheckpointValues(checkpoints, /* checkpointIndex= */ 1, trackBitrates, currentSelection); in getAllocationCheckpoints()
673 if (currentSelection[i] + 1 == logBitrates[i].length) { in getAllocationCheckpoints()
676 double switchPoint = switchPoints[i][currentSelection[i]]; in getAllocationCheckpoints()
682 currentSelection[nextUpdateIndex]++; in getAllocationCheckpoints()
683 setCheckpointValues(checkpoints, checkpointIndex, trackBitrates, currentSelection); in getAllocationCheckpoints()
/external/perfetto/ui/src/tracks/heap_profile/
Dfrontend.ts61 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/cpu_profile/
Dfrontend.ts64 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/controller/aggregation/
Daggregation_controller.ts55 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/cpu_slices/
Dfrontend.ts151 const selection = globals.state.currentSelection;