Home
last modified time | relevance | path

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

12

/development/tools/winscope/spec/utils/
Dtree.js2 constructor(nodeDef, children) { argument
4 this.children = children;
9 constructor(nodeDef, diffType, children) { argument
10 super(nodeDef, children);
20 constructor(name, children, combined, stableId) { argument
29 super(nodeDef, children);
34 constructor(name, diffType, children, combined, stableId) { argument
35 super(name, children, combined, stableId);
/development/tools/winscope/src/utils/
Ddiff.js81 children: diffTrees, property
102 if (node.children) {
103 for (const child of node.children) {
117 clone.children = node.children;
184 deletedTreeDiff.children = this._visitChildren(null, oldTree);
200 diffTree.children = this._visitChildren(newTree, oldTree);
214 diffTree.children = this._visitChildren(null, oldTree);
230 newTree?.children?.length ?? 0, oldTree?.children?.length ?? 0);
232 const newChild = i < newTree?.children?.length ?
233 newTree.children[i] : null;
[all …]
/development/tools/winscope/src/
Dtransform_ime.js8 children: [ property
19 children: [ property
34 children: [], property
44 children: [ property
55 children: [ property
70 children: [], property
80 children: [ property
91 children: [ property
107 children: [], property
Dtransform_sys_ui.js24 children: [] property
33 children: [ property
44 children: [ property
57 children: [ property
Dtransform_accessibility.js24 children: [] property
33 children: [ property
46 children: [ property
Dtransform_launcher.js24 children: [] property
33 children: [ property
46 children: [ property
Dtransform_wl.js38 children: [ property
57 children: [ property
76 children: [ property
87 children: [ property
100 children: [ property
Dtransform.js31 children, property
78 const transformedChildren = handleChildren(children, true /* transform */);
93 children: transformedChildren, property
96 skip: handleChildren(children, false /* transform */),
258 const children = [];
286 children.push(this._transform(obj[key], key, fieldOptions[key],
296 children.push(this._transform(new Terminal(), new Terminal(), undefined,
304 children.length == 1 &&
305 children[0].children.length == 0 &&
306 !children[0].combined
[all …]
Dtransform_protolog.js59 children: data, property
/development/tools/winscope/src/flickerlib/
Dmixin.ts37 if (obj.children) delete obj.children
41 if (obj.proto.children) delete obj.proto.children
48 if (obj.proto.windowContainer?.children) delete obj.proto.windowContainer.children
/development/tools/winscope/src/traces/
DTransactions.ts91 const children = []; constant
100 children.push(mergeTreeNode);
102 children.push(new ApplyTreeNode());
108 return children;
130 for (const child of event.children) {
157 children: TransactionHistory[]; property in MergeTreeNode
162 this.children = mergedTransactionHistory;
171 children: any[]; property in ApplyTreeNode
174 this.children = [];
/development/samples/ApiDemos/src/com/example/android/apis/view/
DExpandableList3.java51 List<Map<String, String>> children = new ArrayList<Map<String, String>>(); in onCreate() local
54 children.add(curChildMap); in onCreate()
58 childData.add(children); in onCreate()
DExpandableList1.java92 private String[][] children = { field in ExpandableList1.MyExpandableListAdapter
100 return children[groupPosition][childPosition]; in getChild()
108 return children[groupPosition].length; in getChildrenCount()
/development/scripts/
Dnative_heapdump_viewer.py361 self.children = {}
368 if not (child.addr in self.children):
369 self.children[child.addr] = child
370 self.children[child.addr].addStack(size, num_allocs, stack[1:])
381 children = sorted(node.children.values(), key=lambda x: x.size, reverse=True)
382 for child in children:
400 children = sorted(node.children.values(), key=lambda x: x.size, reverse=True)
402 if len(children) > 0:
407 for child in children:
/development/samples/Vault/src/com/example/android/vault/
DVaultProvider.java273 final JSONArray children = meta.getJSONArray(KEY_CHILDREN); in isChildDocument() local
274 for (int i = 0; i < children.length(); i++) { in isChildDocument()
275 final String childDocumentId = children.getString(i); in isChildDocument()
400 final JSONArray children = meta.getJSONArray(KEY_CHILDREN); in deleteDocumentTree() local
401 for (int i = 0; i < children.length(); i++) { in deleteDocumentTree()
402 final long childDocId = children.getLong(i); in deleteDocumentTree()
427 final JSONArray children = meta.getJSONArray(KEY_CHILDREN); in deleteDocumentReferences() local
428 if (maybeRemove(children, docId)) { in deleteDocumentReferences()
480 final JSONArray children = meta.getJSONArray(KEY_CHILDREN); in queryChildDocuments() local
481 for (int i = 0; i < children.length(); i++) { in queryChildDocuments()
[all …]
/development/tools/bugreport/src/com/android/bugreport/cpuinfo/
DCpuUsage.java33 public ArrayList<CpuUsage> children = new ArrayList<CpuUsage>();; field in CpuUsage
/development/tools/idegen/src/com/android/idegen/
DDirectorySearch.java144 File[] children = file.listFiles(); in findSourceDirs() local
145 for (File child : children) { in findSourceDirs()
192 File[] children = resFile.listFiles(); in findExcludeDirs() local
193 for (File child : children) { in findExcludeDirs()
/development/tools/rmtypedefs/test/com/android/tools/rmtypedefs/
DRmTypeDefsTest.java230 List<File> children = Lists.newArrayList(); in list() local
231 Collections.addAll(children, files); in list()
232 Collections.sort(children, new Comparator<File>() { in list()
239 for (File child : children) { in list()
/development/tools/winscope/src/flickerlib/windows/
DWindowToken.ts28 /* protoChildren */ proto.windowContainer.children.reverse(),
DWindowContainer.ts48 const children = protoChildren constant
64 children
DDisplayArea.ts27 /* protoChildren */ proto.windowContainer.children.reverse(),
DTaskFragment.ts27 /* protoChildren */ proto.windowContainer.children.reverse(),
DActivity.ts28 /* protoChildren */ proto.windowToken.windowContainer.children.reverse(),
DTask.ts28 /* protoChildren */ windowContainerProto.children.reverse(),
/development/samples/browseable/SwipeRefreshMultipleViews/
D_index.jd9 gesture to a layout with multiple children, enabling the ability to trigger a

12