| /developtools/ace_ets2bundle/compiler/test/pages/ |
| D | TsModule.ts | 23 private property: number = 1; property in TsModule 24 constructor(property: number) { 25 this.property = property; 29 return { count: this.property };
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/ |
| D | TabPaneDmaSelectAbility.ts | 143 …const sortFunction = function (leftData: any, rightData: any, sortType: number, property: string):… 145 return typeof leftData[property] === 'string' 146 ? `${leftData[property]}`.localeCompare(`${rightData[property]}`) 147 : leftData[property] - rightData[property]; 149 return typeof rightData[property] === 'string' 150 ? `${rightData[property]}`.localeCompare(`${leftData[property]}`) 151 : rightData[property] - leftData[property];
|
| D | TabPaneMemoryAbility.ts | 197 function compare(property, sort, type) { 202 … parseFloat(memoryAbilityRightData[property]) - parseFloat(memoryAbilityLeftData[property]) 204 … parseFloat(memoryAbilityLeftData[property]) - parseFloat(memoryAbilityRightData[property]); 211 if (memoryAbilityRightData[property] > memoryAbilityLeftData[property]) { 215 if (memoryAbilityRightData[property] == memoryAbilityLeftData[property]) {
|
| D | TabPaneLiveProcesses.ts | 165 function compare(property, sort, type) { 170 parseFloat(liveProcessRightData[property]) - parseFloat(liveProcessLeftData[property]) 172 … parseFloat(liveProcessLeftData[property]) - parseFloat(liveProcessRightData[property]); 183 if (liveProcessRightData[property] > liveProcessLeftData[property]) { 187 if (liveProcessRightData[property] == liveProcessLeftData[property]) {
|
| D | TabPaneHistoryProcesses.ts | 165 compare(property: string, sort: number, type: string) { 177 … compareValues(parseFloat(historyProcessLeftData[property]), parseFloat(historyProcessRightData[pr… 183 let leftValue = historyProcessLeftData[property] === 'Yes' ? 1 : 0; variable 185 let rightValue = historyProcessRightData[property] === 'Yes' ? 1 : 0; variable 189 return compareValues(historyProcessLeftData[property], historyProcessRightData[property]);
|
| D | TabPaneCpuAbility.ts | 145 …getPropertyByType = (property: string, type: string) => (data: SystemCpuSummary): number | string … 149 return parseFloat(data[property]); 160 return data[property]; 177 compare = (property: string, sort: number, type: string): 179 let getProperty = this.getPropertyByType(property, type);
|
| D | TabPaneDiskAbility.ts | 163 …getPropertyByType = (property: string, type: string) => (data: SystemDiskIOSummary): number | stri… 166 number: parseFloat(data[property]), 178 return typeMap[type] || data[property]; 194 compareDisk(property: string, sort: number, type: string): 196 let getProperty = this.getPropertyByType(property, type);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/ |
| D | TabPaneBoxChild.ts | 124 function compare(property, sort, type) { 129 parseFloat(boxChildRightData[property]) - parseFloat(boxChildLeftData[property]) 131 parseFloat(boxChildLeftData[property]) - parseFloat(boxChildRightData[property]); 134 if (boxChildRightData[property] > boxChildLeftData[property]) { 138 if (boxChildRightData[property] == boxChildLeftData[property]) {
|
| D | TabPaneCpuByProcess.ts | 122 function compare(property, sort, type) { 130 … parseFloat(cpuByProcessRightData[property]) - parseFloat(cpuByProcessLeftData[property]) 132 … parseFloat(cpuByProcessLeftData[property]) - parseFloat(cpuByProcessRightData[property]); 135 if (cpuByProcessRightData[property] > cpuByProcessLeftData[property]) { 139 if (cpuByProcessRightData[property] == cpuByProcessLeftData[property]) {
|
| D | TabPaneCpuByThread.ts | 207 compare(property: any, sort: any, type: string) { 215 parseFloat(cpuByThreadRightData[property]) - parseFloat(cpuByThreadLeftData[property]) 217 parseFloat(cpuByThreadLeftData[property]) - parseFloat(cpuByThreadRightData[property]); 220 if (cpuByThreadRightData[property] > cpuByThreadLeftData[property]) { 224 if (cpuByThreadRightData[property] == cpuByThreadLeftData[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/energy/ |
| D | TabPanePowerDetails.ts | 259 function compare(property, sort, type) { 264 parseFloat(bPowerDetails[property] === '-' ? 0 : bPowerDetails[property]) - 266 parseFloat(aPowerDetails[property] === '-' ? 0 : aPowerDetails[property]) 268 parseFloat(aPowerDetails[property] === '-' ? 0 : aPowerDetails[property]) - 270 parseFloat(bPowerDetails[property] === '-' ? 0 : bPowerDetails[property]); 273 if (bPowerDetails[property] > aPowerDetails[property]) { 277 if (bPowerDetails[property] === aPowerDetails[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/clock/ |
| D | TabPaneClockCounter.ts | 141 function compare(property, sort, type) { 149 … parseFloat(clockCounterRightData[property]) - parseFloat(clockCounterLeftData[property]) 151 … parseFloat(clockCounterLeftData[property]) - parseFloat(clockCounterRightData[property]); 154 if (clockCounterRightData[property] > clockCounterLeftData[property]) { 158 if (clockCounterRightData[property] == clockCounterLeftData[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/smaps/ |
| D | TabPaneSmapsSample.ts | 169 function compare(property, sort, type) { 175 ? parseFloat(bSmapsSample[property]) - parseFloat(aSmapsSample[property]) 177 : parseFloat(aSmapsSample[property]) - parseFloat(bSmapsSample[property]); 180 if (bSmapsSample[property] > aSmapsSample[property]) { 184 if (bSmapsSample[property] === aSmapsSample[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/ |
| D | TabPaneSlices.ts | 205 function compare(property, slicesSort, type) { 214 parseFloat(slicesRightData[property]) - parseFloat(slicesLeftData[property]) 216 parseFloat(slicesLeftData[property]) - parseFloat(slicesRightData[property]); 219 if (slicesRightData[property] > slicesLeftData[property]) { 223 if (slicesRightData[property] === slicesLeftData[property]) {
|
| D | TabPaneCounter.ts | 173 function compare(property, sort, type) { 180 …parseFloat(counterRightData[property]) - parseFloat(counterLeftData[property]) : // @ts… 181 parseFloat(counterLeftData[property]) - parseFloat(counterRightData[property]); 184 if (counterRightData[property] > counterLeftData[property]) { 188 if (counterRightData[property] === counterLeftData[property]) {
|
| D | TabPaneThreadUsage.ts | 194 function compare(property: any, treadUsageSort: any, type: any) { 200 return treadUsageSort === 2 ? parseFloat(threadUsageRightData[property]) - 201 parseFloat(threadUsageLeftData[property]) : parseFloat(threadUsageLeftData[property]) - 202 parseFloat(threadUsageRightData[property]); 204 if (threadUsageRightData[property] > threadUsageLeftData[property]) { 206 } else if (threadUsageRightData[property] == threadUsageLeftData[property]) {
|
| D | TabPaneThreadStates.ts | 265 function compare(property: any, treadStatesSort: any, type: any) { 272 … ? parseFloat(threadStatesRightData[property]) - parseFloat(threadStatesLeftData[property]) 273 … : parseFloat(threadStatesLeftData[property]) - parseFloat(threadStatesRightData[property]); 275 if (threadStatesRightData[property] > threadStatesLeftData[property]) { 277 } else if (threadStatesRightData[property] == threadStatesLeftData[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/ |
| D | TabPaneSdkCounter.ts | 220 function compare(property, countreSort, type) { 228 parseFloat(bSdkCounter[property]) - parseFloat(aSdkCounter[property]) 230 parseFloat(aSdkCounter[property]) - parseFloat(bSdkCounter[property]); 233 if (bSdkCounter[property] > aSdkCounter[property]) { 237 if (bSdkCounter[property] == aSdkCounter[property]) {
|
| D | TabPaneSdkSlice.ts | 251 function compare(property, sliceSort, type) { 259 parseFloat(bSdkSlice[property]) - parseFloat(aSdkSlice[property]) 261 parseFloat(aSdkSlice[property]) - parseFloat(bSdkSlice[property]); 264 if (bSdkSlice[property] > aSdkSlice[property]) { 268 if (bSdkSlice[property] === aSdkSlice[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/jank/ |
| D | TabPaneFrames.ts | 250 function compare(property, sort, type) { 258 parseFloat(framesRightData[property]) - parseFloat(framesLeftData[property]) 260 parseFloat(framesLeftData[property]) - parseFloat(framesRightData[property]); 263 if (framesRightData[property] > framesLeftData[property]) { 267 if (framesRightData[property] === framesLeftData[property]) {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/frame/ |
| D | TabFrameSpacing.ts | 70 frameSpacing.property = propertyStr; 112 let compare = function (property: string, sort: number, type: string) { 121 let rightSpacingData = frameSpacingRightData[property]; 123 let leftSpacingData = frameSpacingLeftData[property]; 197 property: string | undefined; property in FrameSpacingTableStruct
|
| D | TabPaneFrameDynamic.ts | 102 let compare = function (property: string, sort: number, type: string) { 108 let rightData = frameDynamicRight[property]; 110 let leftData = frameDynamicLeft[property];
|
| /developtools/ace_ets2bundle/compiler/codegen/ |
| D | codegen_ets.js | 15 …property=dp,Dr.propertyOf=function(e){return function(t){return null==e?n:Po(e,t)}},Dr.pull=Qa,Dr.… property
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/task/ |
| D | TabPaneTaskFrames.ts | 241 let compare = function (property, sort, type) { 248 …let forwardNum = parseFloat(taskFramesRightData[property]) - parseFloat(taskFramesLeftData[propert… 250 …let reserveNum = parseFloat(taskFramesLeftData[property]) - parseFloat(taskFramesRightData[propert… 254 if (taskFramesRightData[property] > taskFramesLeftData[property]) { 258 if (taskFramesRightData[property] === taskFramesLeftData[property]) {
|
| /developtools/hiperf/test/unittest/resource/testdata/source/ |
| D | build_elf_test.sh | 18 objcopy -R .note.gnu.build-id -R .note.gnu.property -R .note.ABI-tag ../elf_test_stripped ../elf_t… 24 objcopy -R .note.gnu.build-id -R .note.gnu.property -R .note.ABI-tag ../elf32_test_stripped ../elf…
|