Home
last modified time | relevance | path

Searched refs:trackGroupId (Results 1 – 6 of 6) sorted by relevance

/external/perfetto/ui/src/frontend/
Dtrack_group_panel.ts44 trackGroupId: string; property
49 private readonly trackGroupId: string; property in TrackGroupPanel
56 this.trackGroupId = attrs.trackGroupId;
62 return assertExists(globals.state.trackGroups[this.trackGroupId]);
84 if (parentTrackId === attrs.trackGroupId) {
91 const trackGroup = globals.state.trackGroups[attrs.trackGroupId];
95 if (selectedArea.tracks.includes(attrs.trackGroupId) &&
99 selectedArea.tracks.includes(attrs.trackGroupId) ||
107 {id: 'track_' + this.trackGroupId},
112 trackGroupId: attrs.trackGroupId,
[all …]
Dscroll_helper.ts77 const trackGroupId = getContainingTrackId(globals.state, trackIdString); constant
78 if (trackGroupId) {
79 trackGroup = document.querySelector('#track_' + trackGroupId);
82 if (!trackGroupId || !trackGroup) {
92 globals.dispatch(Actions.toggleTrackGroupCollapsed({trackGroupId}));
Dflow_events_renderer.ts65 function hasTrackGroupId(obj: {}): obj is {trackGroupId: string} {
66 return (obj as {trackGroupId?: string}).trackGroupId !== undefined;
94 panel.attrs.trackGroupId, {panel: panel.state, yStart, height});
107 const trackGroupId = this.getTrackGroupIdByTrackId(trackId); constant
108 if (!trackGroupId) {
111 const trackGroupInfo = args.groupIdToTrackGroupPanel.get(trackGroupId);
Dpanel_container.ts147 if (panel.attrs.trackGroupId !== undefined) {
148 const trackGroup = globals.state.trackGroups[panel.attrs.trackGroupId];
151 tracks.push(panel.attrs.trackGroupId);
312 this.attrs.panels[i].attrs.trackGroupId;
Dviewer_page.ts217 trackGroupId: group.id,
/external/perfetto/ui/src/common/
Dactions.ts387 toggleTrackGroupCollapsed(state: StateDraft, args: {trackGroupId: string}):
389 const id = args.trackGroupId;