Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 138) sorted by relevance

123456

/developtools/smartperf_host/ide/src/trace/component/chart/
DFrameChart.ts135 this.rootNode.children.push(node);
175 for (let child of node.children) {
240 if (node.children && node.children.length > 0) {
241 for (const children of node.children) { constant
242 children.parent = node;
243 this.initData(children, depth, calDisplay);
284 if (node.children.length < 0) {
287 for (const children of node.children) { constant
288 children.drawCount = children.searchCount || children.count;
289 children.drawDur = children.searchDur || children.dur;
[all …]
/developtools/smartperf_host/ide/src/trace/database/data-trafic/hiperf/
DHiperfCallChartReceiver.ts129 if (item.children) {
130 (item.children as Array<any>).forEach((child) => {
139 if (item.children && item.children.length > 0) {
140 getArrayData(item.children);
260 perfSample.children = new Array<any>();
261 perfSample.children[0] = {};
291 sample.children = new Array<any>();
292 sample.children.push(stackTopSymbol);
319 if (data.children && data.children.length > 0) {
320 data.children[0].totalTime = data.totalTime;
[all …]
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/frequsage/
DTabPaneFreqDataCut.test.ts78 {percent: 50, children: []},
79 {percent: 75.123456, children: [{percent: 80, children: []}]},
84 expect(arr[1].children[0].percent).toBe('80.00');
89 {pid: 1, tid: 1, children: []},
90 {pid: 2, tid: 2, children: []},
97 {pid: 1, tid: 1, children: [{pid: 1, tid: 1, thread: 'TotalData'}]},
98 {pid: 2, tid: 2, children: []},
104 children: [],
116 expect(obj.children.length).toBe(3);
117 expect(obj.children).toContainEqual({count: 1, dur: 10, percent: 10});
[all …]
/developtools/smartperf_host/ide/src/js-heap/logic/
DAllocation.ts105 let children = this.traceNodes[childrenId - 1].clone();
106 children.size = node.size;
107 children.count = node.count;
108 children.liveSize = node.liveSize;
109 children.liveCount = node.liveCount;
110 node.parents.push(children);
115 let children = this.traceNodes[childrenId - 1].clone();
116 children.size = node.size;
117 children.count = node.count;
118 children.liveSize = node.liveSize;
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hilog/
DTabPaneHiLogSummary.ts116 if (item.children.length > 0) {
117 this.refreshSelectDepth(item.children);
158 if (rowNode.children && this.expandedNodeList.has(rowNode.id)) {
159 this.createRowNodeTableEL(rowNode.children, tableTreeEl, tableCountEl, countEL.style.color);
168 if (rowNode.children && rowNode.children.length > 0) {
225 let root: LogTreeNode = {id: id, depth: 0, children: [], logName: 'All', count: 0};
228 let levelNode = root.children.find((node) => node.logName === item.level);
233 levelNode = {id: id, depth: 0, children: [], logName: item.level, count: 1};
234 root.children.push(levelNode);
236 let processNode = levelNode.children.find((node) => node.logName === item.processName);
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hisysevent/
DTabPaneHiSysEventSummary.ts114 if (item.children.length > 0) {
115 this.refreshSelectDepth(item.children);
155 if (rowNode.children && this.expandedNodeList.has(rowNode.id)) {
156 … this.createRowNodeTableEL(rowNode.children, tableTreeEl, tableCountEl, countEle.style.color);
165 if (rowNode.children && rowNode.children.length > 0) {
222 let root: HiSysEventTreeNode = {id: id, depth: 0, children: [], summaryName: '', count: 0};
225 let levelNode = root.children.find((node) => node.summaryName === item.level);
230 levelNode = {id: id, depth: 0, children: [], summaryName: item.level, count: 1};
231 root.children.push(levelNode);
233 let domainNode = levelNode.children.find((node) => node.summaryName === item.domain);
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/gpu/
DTabPaneGpuClickSelect.ts28 children?: GpuTreeItem[] | undefined; property
62 this.gpuSource = (gpu.type === 'total' ? items[0].children : items) || [];
85 let moduleGroup = windowGroup.children!.find((it) => it.id === item.moduleId);
89 moduleGroup.children?.push(categoryItem);
91 windowGroup.children?.push({
96 children: [categoryItem],
105 children: [{
110 children: [categoryItem],
142 if (item.children != undefined && item.children.length > 0) {
143 table!.setStatus(item.children, false);
[all …]
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMCallTree.test.ts49 children: [],
58 { size: 10, count: 20, children: [] },
59 { size: 11, count: 21, children: [] },
60 { size: 21, count: 31, children: [] },
71 children: [],
80 children: [],
120 { size: 10, count: 20, children: [] },
121 { size: 11, count: 21, children: [] },
122 { size: 21, count: 31, children: [] },
DTabPaneNMSampleList.test.ts46 children: [],
79 children: [],
98 children: [],
115 children: [],
149 children: [],
165 children: [snapshot],
181 children: [snapshot],
242 children: samplerInfo,
270 children: samplerInfo,
298 children: [],
[all …]
/developtools/smartperf_host/ide/src/base-ui/tree/
DLitTree.ts27 children?: Array<TreeItemData> | null | undefined; property
58 if (!value.children) {
59 value.children = new Proxy([], handler);
61 value.children = new Proxy(value.children, handler);
86 if (!a.children) {
87 a.children = new Proxy([], handler);
89 a.children = new Proxy(a.children, handler);
90 setProxy(a.children || []);
255 if (a.children && a.children.length > 0) {
267 this.drawTree(ul, a.children);
[all …]
/developtools/ace_ets2bundle/compiler/
D如何新增或修改组件指导规范.md17 "children": [],
30 | children(可选,默认所有组件可用) | 子组件只能是哪些组件 |
47 children?,
56 children?,
65 children?,
/developtools/ace_js2bundle/ace-loader/plugin/templater/
Drich_component_map.js23 children: ['span'], property
53 children: ['a', 'span', 'tspan', 'textpath', 'animate', 'animatetransform'], property
74 children: ['span'], property
236 children: ['option'], property
294 children: ['navigation-menu', 'select', 'tab-bar'], property
315 children: ['option'], property
448children: ['svg', 'circle', 'ellipse', 'line', 'path', 'polygon', 'polyline', 'rect', 'text', 'ani… property
495 children: ['tspan', 'textpath', 'animate', 'animatetransform'], property
510 children: ['animate', 'animatetransform', 'animatemotion'], property
540 children: ['animate', 'animatetransform', 'animatemotion'], property
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneIOTierStatistics.ts91 node: { ...initIoTierItem, children: [] },
124 children: [],
164 currentFatherObject.children.push(this.getInitData(resultItem));
168 children: [this.getInitData(resultItem)],
187 currentChildObject.children.push(this.getInitData(resultItem, 'path', null));
191 children: [this.getInitData(resultItem, 'path', null)],
199 sp!.children = [];
218 data.children.forEach((e: any) => {
226 sp!.children.push(data);
229 ioTierAllNode.children.push(ioTierNode);
[all …]
DTabPaneVirtualMemoryStatistics.ts102 node: { ...initVmMemoryStatItem, children: [] },
134 children: [],
166 sp!.children = [];
177 vmMemoryStatAllNode.children.push(vmMemoryStatNode);
191 sp!.children.push(data);
205 data.children.forEach((e: any) => {
227 vmMemoryStatFatherObj.children.push(this.getInitData(item));
231 children: [this.getInitData(item)],
245 vmMemoryStatChildObj.children.push(
251 children: [
[all …]
/developtools/smartperf_host/ide/src/trace/bean/
DPerfBottomUpStruct.ts27 children: Array<PerfBottomUpStruct>;
34 this.children = [];
39 this.children.push(child);
47 const sum = this.children.reduce((total, obj) => total + obj.totalTime, 0);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/
DTabPaneStaticInit.ts30 children: SoTreeItem[] | undefined; property
54 children: [],
58 if (ps && ps.children) {
60 ps.children!.push(so);
68 children: [so],
75 it.children!.forEach((child) => {
150 this.staticinitSource.forEach((it) => it.children?.sort(compare));
DTabPaneStartup.ts31 children: StartupTreeItem[] | undefined; property
73 it.children!.forEach((child) => {
96 children: [],
100 if (ps && ps.children) {
102 ps.children!.push(startup);
111 children: [startup],
175 startup.children?.sort(compare);
/developtools/smartperf_host/ide/test/trace/component/trace/base/
DTraceRowConfig.test.ts49 children: [
51 children: [
53 children: [],
66 id: 1, nodeName: 'Cpu', children: [], depth: 1, isCheck: false,
110 children: [],
125 children: [],
184 children: [],
191 id: 8, nodeName: 'Cpu', children: [], depth: 2, isCheck: false,
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/
DTabPaneJsCpu.ts94 if (item.children && item.children.length > 0) {
95 item.children.forEach((it) => {
111 setTabData(item.children);
121 const getHeaviestChildren = (children: Array<JsCpuProfilerTabStruct>): void => {
122 if (children.length === 0) {
125 const heaviestChild = children.reduce(
130 getHeaviestChildren(heaviestChild.children);
146 getHeaviestChildren(data.children);
247 call.children = this.sortTree(call.children);
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSPT.ts138 let thread = process.children.find((child: any) => child.title === `T-${slice.tid}`);
145 let state = thread.children.find((child: any) => child.title === `S-${slice.state}`);
153 thread.children.push(item);
157 process.children.push(processChild);
187 children: [
197 children: [item],
212 children: [item],
245 children: [
255 children: [item],
270 let process = state.children.find((child: any) => child.title === `P-${slice.pid}`);
[all …]
/developtools/smartperf_host/ide/src/js-heap/
DHeapDataInterface.ts152 let children = new Array<ConstructorItem>(); variable
155 children = node.classChildren;
159 children = filStruct!.heapLoader.getNextNode(node);
162 return children;
171 let children = new Array<ConstructorItem>(); variable
180 children.push(compareNode);
190 children.push(compareNode);
193 children = this.getNextForConstructor(comparisonNode);
195 return children;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/frequsage/
DTabPaneFreqUsageConfig.ts29 children: Array<TabPaneFreqUsageConfig> | undefined; property in TabPaneFreqUsageConfig
43 children: Array<TabPaneFreqUsageConfig> | undefined
57 this.children = children;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMSampleList.ts134 rootSample.children.push(childSample);
174 rootSample.tempList = [...rootSample.children];
219 childSample.children.push(...child.children);
220 parentSample.children.push(childSample);
222 parentSample.children.push(...child.children);
227 rootSample.children.push(parentSample);
235 currentSample.children.forEach((currentChild) => {
238 rootSample.children.forEach((rootChild) => {
243 currentSample.children.push(perpSample);
343 nmRootSample.children = [...nmRootSample.tempList];
[all …]
/developtools/smartperf_host/ide/src/trace/component/
DSpHelp.ts84 children: [
100 children: [
116 children: [
130 children: [
163 children: this.setupOtherMenuItems(that),
198 children: [
247 children: [
266 children: [
285 children: [
332 children: [
/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_js_cpu_profiler_parser.cpp34 std::string children; member
54 auto children = std::to_string(child); in from_json() local
55 node.children += children + ","; in from_json()
80 auto children = node.children; in ParseNodeData() local
81 children = children.substr(0, children.size() - 1); in ParseNodeData()
87 … id, functionNameKey, scriptId, urlKey, lineNumber, columnNumber, hitCount, children, parentId); in ParseNodeData()

123456