Searched refs:sqlMap (Results 1 – 3 of 3) sorted by relevance
| /developtools/smartperf_host/ide/src/trace/component/chart/ |
| D | SpSdkChart.ts | 193 let sqlMap = table[index]; 194 if (sqlMap.type === 'counter') { 195 let result = await querySdkCount(sqlMap.countSql, componentId); 197 await this.initCounter(nodeRow, i, result[i], sqlMap, componentId); 199 } else if (sqlMap.type === 'slice' && sqlMap.pluginName === this.pluginName) { 202 … let result = await querySdkCount(sqlMap.countSql, componentId, {$suffix: `%${ suffixList[i]}`}); 206 await this.initSlice(groupNodeRow, i, result[i], sqlMap, componentId); 210 let result = await querySdkCount(sqlMap.countOtherSql, componentId); 214 await this.initSlice(groupNodeRow, i, result[i], sqlMap, componentId); 217 } else if (sqlMap.type === 'slice') { [all …]
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/ |
| D | TabPaneSdkCounter.ts | 34 private sqlMap: Map<number, any> = new Map<number, any>(); property in TabPaneSdkCounter 115 let sqlObj = this.sqlMap.get(componentId); 169 this.sqlMap.set(key, {
|
| D | TabPaneSdkSlice.ts | 35 private sqlMap: Map<number, string> = new Map<number, string>(); property in TabPaneSdkSlice 71 let sql = this.sqlMap.get(componentId); 199 this.sqlMap.set(key, sliceSql);
|