/development/tools/winscope/spec/utils/ |
D | tree.js | 2 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/ |
D | diff.js | 81 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/ |
D | transform_ime.js | 8 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
|
D | transform_sys_ui.js | 24 children: [] property 33 children: [ property 44 children: [ property 57 children: [ property
|
D | transform_accessibility.js | 24 children: [] property 33 children: [ property 46 children: [ property
|
D | transform_launcher.js | 24 children: [] property 33 children: [ property 46 children: [ property
|
D | transform_wl.js | 38 children: [ property 57 children: [ property 76 children: [ property 87 children: [ property 100 children: [ property
|
D | transform.js | 31 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 …]
|
D | transform_protolog.js | 59 children: data, property
|
/development/tools/winscope/src/flickerlib/ |
D | mixin.ts | 37 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/ |
D | Transactions.ts | 91 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/ |
D | ExpandableList3.java | 51 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()
|
D | ExpandableList1.java | 92 private String[][] children = { field in ExpandableList1.MyExpandableListAdapter 100 return children[groupPosition][childPosition]; in getChild() 108 return children[groupPosition].length; in getChildrenCount()
|
/development/scripts/ |
D | native_heapdump_viewer.py | 361 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/ |
D | VaultProvider.java | 273 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/ |
D | CpuUsage.java | 33 public ArrayList<CpuUsage> children = new ArrayList<CpuUsage>();; field in CpuUsage
|
/development/tools/idegen/src/com/android/idegen/ |
D | DirectorySearch.java | 144 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/ |
D | RmTypeDefsTest.java | 230 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/ |
D | WindowToken.ts | 28 /* protoChildren */ proto.windowContainer.children.reverse(),
|
D | WindowContainer.ts | 48 const children = protoChildren constant 64 children
|
D | DisplayArea.ts | 27 /* protoChildren */ proto.windowContainer.children.reverse(),
|
D | TaskFragment.ts | 27 /* protoChildren */ proto.windowContainer.children.reverse(),
|
D | Activity.ts | 28 /* protoChildren */ proto.windowToken.windowContainer.children.reverse(),
|
D | Task.ts | 28 /* protoChildren */ windowContainerProto.children.reverse(),
|
/development/samples/browseable/SwipeRefreshMultipleViews/ |
D | _index.jd | 9 gesture to a layout with multiple children, enabling the ability to trigger a
|