Home
last modified time | relevance | path

Searched refs:instructionArray (Results 1 – 3 of 3) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/bpftrace/
DTabPaneSampleInstruction.ts30 private instructionArray: Array<unknown> = []; property in TabPaneSampleInstruction
164 const searchResult = this.searchDataByCoord(this.instructionArray!, this.canvasX, this.canvasY);
172 for (const key in this.instructionArray) {
174 for (let i = 0; i < this.instructionArray[key].length; i++) {
176 const cur = this.instructionArray[key][i];
272 const instructionArray = this.flattenTreeData constant
281 for (const key in instructionArray) {
283 for (let i = 0; i < instructionArray[key].length; i++) {
285 const cur = instructionArray[key][i];
292 const preList = instructionArray[Number(key) - 1];
[all …]
DTabPaneSampleInstructionSelection.ts31 private instructionArray: Array<unknown> = []; property in TabPaneSampleInstructionSelection
163 const searchResult = this.searchDataByCoord(this.instructionArray!, this.canvasX, this.canvasY);
171 for (const key in this.instructionArray) {
173 for (let i = 0; i < this.instructionArray[key].length; i++) {
175 const cur = this.instructionArray[key][i];
270 const instructionArray = this.instructionData constant
279 for (const key in instructionArray) {
281 for (let i = 0; i < instructionArray[key].length; i++) {
283 const cur = instructionArray[key][i];
290 const preList = instructionArray[Number(key) - 1];
[all …]
DTabPaneSampleInstructionSelectionTotalTime.ts231 const instructionArray = onReadableData.reduce((pre: unknown, current: unknown) => { constant
243 Object.keys(instructionArray)
246 const yMaxValue = Object.values(instructionArray).reduce(
255 this.drawBar(instructionArray, height, count);