/external/perfetto/ui/src/frontend/ |
D | flow_events_panel.ts | 46 const flowClickHandler = (sliceId: number, trackId: number) => { 51 {id: sliceId, trackId: uiTrackId, table: 'slice'}), 75 if (selection.id !== flow.begin.sliceId && 76 selection.id !== flow.end.sliceId) { 80 const outgoing = selection.id === flow.begin.sliceId; 84 onclick: () => flowClickHandler(otherEnd.sliceId, otherEnd.trackId), 86 globals.frontendLocalState.setHighlightedSliceId(otherEnd.sliceId), 92 m('td.flow-link', args, otherEnd.sliceId.toString()),
|
D | keyboard_event_handler.ts | 118 const sliceId = globals.state.currentSelection.id; constant 119 if (sliceId === -1) { 124 flow => flow.begin.sliceId === sliceId && direction === 'Forward' || 125 flow.end.sliceId === sliceId && direction === 'Backward'); 145 const sliceId = globals.state.currentSelection.id; constant 151 if (sliceId === -1 || flowId === -1) { 162 {id: flowPoint.sliceId, trackId: uiTrackId, table: 'slice'}));
|
D | thread_state_panel.ts | 54 threadState.sliceId, 70 state: string, cpu: number|undefined, sliceId: number|undefined, 72 if (sliceId === undefined || cpu === undefined) { 92 Actions.selectSlice({id: sliceId, trackId}));
|
D | query_table.ts | 63 let sliceId: number|undefined; variable 65 sliceId = row.id as number | undefined; 67 sliceId = row.slice_id as number | undefined; 69 if (sliceId !== undefined) { 72 {id: sliceId, trackId: uiTrackId, table: 'slice'}),
|
D | chrome_slice_panel.ts | 214 const sliceId = value.sliceId; constant 222 {id: sliceId, trackId, table: 'slice'}));
|
D | index.ts | 159 const sliceId = globals.state.currentSelection.id; constant 161 if (flow.begin.sliceId === sliceId) { 164 if (flow.end.sliceId === sliceId) {
|
D | frontend_local_state.ts | 131 setHighlightedSliceId(sliceId: number) { 132 this.highlightedSliceId = sliceId;
|
D | globals.ts | 58 sliceId: number; property 88 sliceId?: number; property
|
D | flow_events_renderer.ts | 216 flow.end.sliceId === globals.frontendLocalState.highlightedSliceId || 217 flow.begin.sliceId === globals.frontendLocalState.highlightedSliceId;
|
/external/perfetto/ui/src/controller/ |
D | flow_events_controller.ts | 79 sliceId: beginSliceId, 88 sliceId: endSliceId, 103 sliceSelected(sliceId: number) { 105 this.lastSelectedSliceId === sliceId) { 108 this.lastSelectedSliceId = sliceId; 120 from directly_connected_flow(${sliceId}) f
|
D | selection_controller.ts | 220 {kind: 'SLICE', trackId: destTrackId, sliceId: Number(value)}); 228 async getDestTrackId(sliceId: string): Promise<string> { 230 where slice_id = ${sliceId}`; 273 const sliceId = constant 283 sliceId, constant
|
/external/perfetto/ui/src/tracks/chrome_slices/ |
D | frontend.ts | 83 const sliceId = data.sliceIds[i]; constant 100 currentSelection.id !== undefined && currentSelection.id === sliceId; 104 globals.frontendLocalState.highlightedSliceId === sliceId; 242 const sliceId = data.sliceIds[sliceIndex]; constant 243 if (sliceId !== undefined && sliceId !== -1) { 245 id: sliceId,
|
/external/perfetto/ui/src/common/ |
D | arg_types.ts | 15 export type Arg = string|{kind: 'SLICE', trackId: string, sliceId: number};
|
/external/mesa3d/src/amd/addrlib/src/gfx10/ |
D | gfx10addrlib.cpp | 4095 const UINT_32 sliceId = isThin ? pIn->slice : (pIn->slice / localOut.blockSlices); in ComputeSurfaceAddrFromCoordMacroTiled() local 4107 pOut->addr = sliceSize * sliceId + in ComputeSurfaceAddrFromCoordMacroTiled()
|