Home
last modified time | relevance | path

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

/external/perfetto/ui/src/frontend/
Dkeyboard_event_handler.ts31 if (!selectedArea && globals.state.currentSelection !== null) {
68 const selection = globals.state.currentSelection;
92 globals.state.currentSelection) {
93 const tracks = globals.state.currentSelection.trackId ?
94 [globals.state.currentSelection.trackId] :
101 const selection = globals.state.currentSelection;
Dfrontend_local_state.ts246 if (globals.state.currentSelection != null &&
247 globals.state.currentSelection.kind === 'NOTE') {
249 Actions.removeNote({id: globals.state.currentSelection.id}));
314 if (globals.state.currentSelection != null &&
315 globals.state.currentSelection.kind === 'NOTE') {
316 const curNote = globals.state.notes[globals.state.currentSelection.id];
Dtrack_group_panel.ts218 if (globals.state.currentSelection !== null) {
219 if (globals.state.currentSelection.kind === 'NOTE') {
220 const note = globals.state.notes[globals.state.currentSelection.id];
235 if (globals.state.currentSelection.kind === 'SLICE' &&
Dtrack_panel.ts331 if (globals.state.currentSelection !== null) {
332 if (globals.state.currentSelection.kind === 'NOTE') {
333 const note = globals.state.notes[globals.state.currentSelection.id];
349 if (globals.state.currentSelection.kind === 'SLICE' &&
Ddetails_panel.ts172 const curSelection = globals.state.currentSelection;
Dnotes_panel.ts99 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/chrome_slices/
Dfrontend.ts135 const currentSelection = globals.state.currentSelection; constant
136 if (currentSelection && currentSelection.kind === 'CHROME_SLICE' &&
137 currentSelection.id !== undefined &&
138 currentSelection.id === sliceId) {
/external/perfetto/ui/src/common/
Dactions.ts365 state.currentSelection = {
452 if (state.currentSelection === null) return;
453 if (state.currentSelection.kind === 'NOTE' &&
454 state.currentSelection.id === args.id) {
455 state.currentSelection = null;
460 state.currentSelection = {
471 state.currentSelection = {
483 state.currentSelection = {
508 state.currentSelection = {
538 state.currentSelection = {
[all …]
Dstate.ts273 currentSelection: Selection|null; property
730 currentSelection: null,
/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/controller/
Dselection_controller.ts37 const selection = globals.state.currentSelection;
96 const selection = globals.state.currentSelection;
193 const selection = globals.state.currentSelection;
Dcpu_profile_controller.ts36 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/cpu_profile/
Dfrontend.ts60 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/heap_profile/
Dfrontend.ts62 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/thread_state/
Dfrontend.ts126 const selection = globals.state.currentSelection;
/external/perfetto/ui/src/tracks/cpu_slices/
Dfrontend.ts179 const selection = globals.state.currentSelection;