Home
last modified time | relevance | path

Searched refs:currentNode (Results 1 – 11 of 11) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerFileSystem.ts823 this.currentTreeList.forEach((currentNode: any): void => {
824 currentNode.total = totalCount;
825 this.setMerageName(currentNode);
826 if (currentNode.id === '') {
827 currentNode.id = id + '';
830 if (currentNode.parentNode) {
831 if (currentNode.parentNode.id === '') {
832 currentNode.parentNode.id = id + '';
835 currentNode.parentId = currentNode.parentNode.id;
873 currentNode: FileMerageBean,
[all …]
DProcedureLogicWorkerNativeNemory.ts926 let currentNode = groupMap[sample.tid + '-' + sample.eventId] || new NativeHookStatistics(); variable
927 if (currentNode.count === 0) {
928 Object.assign(currentNode, sample);
930 currentNode.heapSize = sample.heapSize - sample.freeSize;
931 currentNode.count = sample.count - sample.freeCount;
933 if (currentNode.count === 0) {
934 currentNode.count++;
935 currentNode.countArray.push(1);
936 currentNode.tsArray.push(sample.startTs);
939 currentNode.count++;
[all …]
DProcedureLogicWorkerPerf.ts513 currentNode: PerfCallChainMerageData,
526 currentNode.initChildren.filter((child: PerfCallChainMerageData): boolean => {
541 currentNode.children.push(node);
542 currentNode.initChildren.push(node);
544 node.parentNode = currentNode;
854 let currentNode = topUp;
858 currentNode = topUp;
861 const existingNode = currentNode.children.find(
866 currentNode = existingNode;
877 currentNode.addChildren(newNode);
[all …]
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerFileSystem.test.ts194 let currentNode = { variable
200 expect(handlerMap.setMerageName(currentNode)).toBeUndefined();
205 let currentNode = { variable
212 expect(handlerMap.setMerageName(currentNode)).toBeUndefined();
319 let currentNode = { variable
342 expect(FileMerageBean.merageCallChainSample(currentNode, callChain, sample, isEnd));
372 let currentNode = { variable
384 …expect(handlerMap.merageChildrenByIndex(currentNode, callChainDataList, index, sample, isTopDown))…
DProcedureLogicWorkerPerf.test.ts498 let currentNode = { variable
503 …expect(procedureLogicWorkerPerf.mergeChildrenByIndex(currentNode, [], 9, [], true)).toBeUndefined(…
680 let currentNode = { variable
689 expect(PerfCallChainMerageData.merageCallChainSample(currentNode, callChain, {
DProcedureLogicWorkerNativeNemory.test.ts541 let currentNode = { variable
546 …expect(procedureLogicWorkerNativeMemory.merageChildrenByIndex(currentNode, [], 21, [], true)).toBe…
723 let currentNode = { variable
728 expect(NativeHookCallInfo.merageCallChainSample(currentNode, [], []));
/developtools/smartperf_host/ide/src/js-heap/logic/
DAllocation.ts148 let currentNode = this.getNodeById(allocationNodeId);
150 if (currentNode) {
151 this.getFunctionStack(currentNode, functionList);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hisysevent/
DTabPaneHiSysEventSummary.ts211 private changeNode(currentNode: number): void {
212 if (this.expandedNodeList.has(currentNode)) {
213 this.expandedNodeList['delete'](currentNode);
215 this.expandedNodeList.add(currentNode);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hilog/
DTabPaneHiLogSummary.ts182 private changeNode(currentNode: number): void {
183 if (this.expandedNodeList.has(currentNode)) {
184 this.expandedNodeList['delete'](currentNode);
186 this.expandedNodeList.add(currentNode);
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceRowConfig.ts858 private changeNode(currentNode: number): void {
859 if (this.expandedNodeList.has(currentNode)) {
860 this.expandedNodeList['delete'](currentNode);
862 this.expandedNodeList.add(currentNode);
/developtools/smartperf_host/ide/src/trace/component/chart/
DFrameChart.ts598 const currentNode = stack.pop(); constant
599 if (currentNode) {
600 currentNode.children.forEach((child) => {