| /developtools/smartperf_host/ide/src/trace/bean/ |
| D | CpuStruct.ts | 65 let x1 = Math.floor( 69 … cpuBeanStructCanvasCtx.fillText(cpuBeanProcess, x1, y, cpuBeanStructWidth - textPadding * 2); 72 let x1 = cpuBeanStruct.frame.x + textPadding; 76 x1, 89 let x1 = cpuBeanStruct.frame.x + textPadding; 93 x1,
|
| /developtools/smartperf_host/ide/src/trace/database/ui-worker/ |
| D | ProcedureWorkerCommon.ts | 583 let x1 = ns2x(slicesTime.startTime, startNS, endNS, totalNS, frame); 585 commonCtx.moveTo(Math.floor(x1), 0); 586 commonCtx.lineTo(Math.floor(x1), frame.height); 610 let x1 = ns2x( 625 ctx.moveTo(Math.floor(x1), 0); 626 ctx.lineTo(Math.floor(x1), frame.height); //左边的线 990 let x1 = Math.floor(ns2x(wake.wakeupTime || 0, startNS, endNS, totalNS, frame)); 994 if (x1 > 0 && x1 < frame.x + frame.width) { 996 wakeUpContext.moveTo(x1, frame.y); 997 wakeUpContext.lineTo(x1, frame.y + frame.height); [all …]
|
| D | ProcedureWorkerProcess.ts | 139 let x1: number; 142 x1 = 0; 144 x1 = ns2x(processNode.startTime || 0, startNS, endNS, totalNS, frame); 151 let processGetV: number = x2 - x1 <= 1 ? 1 : x2 - x1; 155 processNode.frame.x = Math.floor(x1);
|
| D | ProcedureWorkerHiSysEvent.ts | 131 let x1: number, x2: number; 133 x1 = ns2x(sysEventNode.startTs || 0, startNS, endNS, totalNS, frame); 135 x1 = 0; 148 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; 149 sysEventNode.frame.x = Math.floor(x1);
|
| D | ProcedureWorkerLog.ts | 142 let x1: number, x2: number; 144 x1 = ns2x(logNode.startTs || 0, startNS, endNS, totalNS, frame); 146 x1 = 0; 156 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; 157 logNode.frame!.x = Math.floor(x1);
|
| D | ProcedureWorkerSoInit.ts | 138 let x1: number; 141 x1 = ns2x(soNode.startTs || 0, startNS, endNS, totalNS, frame); 143 x1 = 0; 153 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; 154 soNode.frame.x = Math.floor(x1);
|
| D | ProcedureWorkerHeap.ts | 158 let x1: number, x2: number; 160 x1 = 0; 162 x1 = ns2x(node.startTime || 0, startNS, endNS, totalNS, frame); 176 let getV: number = x2 - x1 <= 1 ? 1 : x2 - x1; 178 Math.floor(x1),
|
| D | ProcedureWorkerCpuProfiler.ts | 217 let x1: number, x2: number; 219 x1 = ns2x(jsCpuProfilerNode.startTime || 0, startNS, endNS, totalNS, frame); 221 x1 = 0; 240 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; 241 jsCpuProfilerNode.frame.x = Math.floor(x1);
|
| D | ProcedureWorkerJank.ts | 166 let x1: number, x2: number; 168 x1 = ns2x(jankNode.ts || 0, startNS, endNS, totalNS, frame); 170 x1 = 0; 180 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; 181 jankNode.frame.x = Math.floor(x1);
|
| D | ProcedureWorkerFunc.ts | 160 let x1: number, x2: number; 162 x1 = ns2x(funcNode.startTs || 0, startNS, endNS, totalNS, frame); 164 x1 = 0; 177 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; 178 funcNode.frame.x = Math.floor(x1);
|
| /developtools/smartperf_host/ide/src/base-ui/chart/pie/ |
| D | LitChartPieData.ts | 25 export function isPointIsCircle(x1: number, y1: number, x2: number, y2: number, radius: number): bo… 26 return Math.sqrt(Math.pow(Math.abs(x2 - x1), 2) + Math.pow(Math.abs(y2 - y1), 2)) < radius;
|
| /developtools/smartperf_host/ide/src/trace/database/ui-worker/hiperf/ |
| D | ProcedureWorkerHiPerfCallChart.ts | 100 let x1: number, x2: number; variable 102 x1 = ns2x(hiPerfNode.startTime || 0, startNS, endNS, totalNS, frame); 104 x1 = 0; 117 let getV: number = x2 - x1 < 1 ? 1 : x2 - x1; variable 118 hiPerfNode.frame.x = Math.floor(x1);
|
| /developtools/smartperf_host/ide/src/trace/database/ui-worker/cpu/ |
| D | ProcedureWorkerCpuFreqLimits.ts | 172 let x1: number, x2: number; 174 x1 = 0; 176 x1 = ns2x(freqLimitNode.startNs || 0, startNS, endNS, totalNS, frame); 183 let cpuFreqLimitsGetV: number = x2 - x1 <= 1 ? 1 : x2 - x1; 187 freqLimitNode.frame.x = Math.floor(x1);
|
| D | ProcedureWorkerCpuState.ts | 236 let x1: number, x2: number; 238 x1 = 0; 240 x1 = ns2x(cpuStateNode.startTs || 0, startNS, endNS, totalNS, frame); 247 let cpuStateGetV: number = x2 - x1 <= 1 ? 1 : x2 - x1; 251 cpuStateNode.frame.x = Math.ceil(x1);
|
| D | ProcedureWorkerCPU.ts | 288 let x1 = Math.floor(width / 2 - data.measurePWidth / 2 + data.frame.x + textPadding); 289 ctx.fillText(data.displayProcess, x1, y, textFillWidth); 293 let x1 = data.frame.x + textPadding; 295 ctx.fillText(data.displayProcess.substring(0, 1), x1, y, textFillWidth); 297 … ctx.fillText(data.displayProcess.substring(0, chatNum - 1) + '...', x1, y, textFillWidth); 308 let x1 = data.frame.x + textPadding; 310 ctx.fillText(data.displayThread.substring(0, 1), x1, y + 2, textFillWidth); 312 … ctx.fillText(data.displayThread.substring(0, chatNum - 1) + '...', x1, y + 2, textFillWidth);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/base/ |
| D | RangeSelect.ts | 253 let x1 = 261 this.mark = {startMark: x1, endMark: x2}; 263 if (mouseX > x1 - 5 && mouseX < x1 + 5) { 266 this.movingMark = x1 < x2 ? 'markA' : 'markB'; 270 this.movingMark = x2 < x1 ? 'markA' : 'markB';
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/testcases/ |
| D | NotificationBar.py | 25 self.common_oh.swipe(self.Phone1, x1=500, y1=0, x2=500, y2=80) 48 self.common_oh.swipe(self.Phone1, x1=500, y1=500, x2=500, y2=300)
|
| /developtools/profiler/device/plugins/process_plugin/test/resources/proc/1872/task/1873/ |
| D | cmdline | 1 ibus-x1:disk$0
|
| /developtools/profiler/device/plugins/process_plugin/test/resources/proc/1872/task/1965/ |
| D | cmdline | 1 ibus-x1:disk$1
|
| /developtools/profiler/device/plugins/cpu_plugin/test/resources/proc/1872/task/1966/ |
| D | stat | 1 1966 (ibus-x1:disk$1) X 1 1865 1780 1025 1780 1077936192 1 0 0 0 0 0 0 0 20 0 7 0 4444 726278144 0 …
|
| /developtools/profiler/device/plugins/cpu_plugin/test/resources/proc/1872/task/1965/ |
| D | stat | 1 1965 (ibus-x1:disk$0) S 1 1865 1780 1025 1780 1077936192 1 0 0 0 8 1 5 8 20 0 7 0 4444 726278144 0 …
|
| /developtools/profiler/device/plugins/cpu_plugin/test/resources/proc/1872/task/1968/ |
| D | stat | 1 1968 (ibus-x1:disk$3) T 1 1865 1780 1025 1780 1077936192 1 0 0 0 7 0 0 0 20 0 7 0 4444 726278144 0 …
|
| /developtools/profiler/device/plugins/cpu_plugin/test/resources/proc/1872/task/1967/ |
| D | stat | 1 1967 (ibus-x1:disk$2) S 1 1865 1780 1025 1780 1077936192 1 0 0 0 10 1 5 8 20 0 7 0 4444 726278144 0…
|
| /developtools/hiperf/test/unittest/resource/testdata/ |
| D | phdrs_from_readelf_64 | 12 0x000000000000001c 0x000000000000001c R 0x1 35 0x0000000000000320 0x0000000000000320 R 0x1
|
| /developtools/profiler/device/plugins/native_daemon/test/unittest/resource/testdata/ |
| D | phdrs_from_readelf_32 | 9 INTERP 0x0001b4 0x000001b4 0x000001b4 0x00013 0x00013 R 0x1 20 GNU_RELRO 0x002e6c 0x00003e6c 0x00003e6c 0x00194 0x00194 R 0x1
|