Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 54) sorted by relevance

123

/developtools/ace_ets2bundle/compiler/test/pages/
DTsModule.ts23 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/
DTabPaneDmaSelectAbility.ts143 …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];
DTabPaneMemoryAbility.ts197 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]) {
DTabPaneLiveProcesses.ts165 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]) {
DTabPaneHistoryProcesses.ts165 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]);
DTabPaneCpuAbility.ts145 …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);
DTabPaneDiskAbility.ts163 …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/
DTabPaneBoxChild.ts124 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]) {
DTabPaneCpuByProcess.ts122 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]) {
DTabPaneCpuByThread.ts207 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/
DTabPanePowerDetails.ts259 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/
DTabPaneClockCounter.ts141 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/
DTabPaneSmapsSample.ts169 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/
DTabPaneSlices.ts205 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]) {
DTabPaneCounter.ts173 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]) {
DTabPaneThreadUsage.ts194 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]) {
DTabPaneThreadStates.ts265 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/
DTabPaneSdkCounter.ts220 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]) {
DTabPaneSdkSlice.ts251 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/
DTabPaneFrames.ts250 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/
DTabFrameSpacing.ts70 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
DTabPaneFrameDynamic.ts102 let compare = function (property: string, sort: number, type: string) {
108 let rightData = frameDynamicRight[property];
110 let leftData = frameDynamicLeft[property];
/developtools/ace_ets2bundle/compiler/codegen/
Dcodegen_ets.js15property=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/
DTabPaneTaskFrames.ts241 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/
Dbuild_elf_test.sh18 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…

123