Home
last modified time | relevance | path

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

/build/make/ci/
Dbuild_test_suites_local_test.py60 def assert_children_alive(self, children: list[int]):
61 for c in children:
64 def assert_children_dead(self, children: list[int]):
65 for c in children:
86 children = query_child_pids(p.pid)
87 self.assert_children_alive(children)
93 self.assert_children_dead(children)
101 children = query_child_pids(p.pid)
102 self.assert_children_alive(children)
108 self.assert_children_dead(children)
/build/make/tools/product_config/
Dinherit_tree.py13 children = graph.get(node, [])
14 if children:
/build/soong/scripts/
Dmanifest.py27 children = []
31 children.append(child)
32 return children
Dmanifest_fixer.py361 children = get_children_with_tag(manifest, tag)
362 for child in children:
/build/bazel/scripts/incremental_build/
Dfinder.py78 children = [Path(c.path) for c in os.scandir(first) if _should_visit(c)]
79 children.sort()
80 bfs.extend(children)
/build/soong/finder/
Dfinder.go479 children map[string]*pathMap member
486 result := &pathMap{path: path, children: make(map[string]*pathMap, 4),
513 child, found := node.children[firstComponent]
530 m.children[name] = newChild
532 return m.children[name]
537 for _, child := range m.children {
545 for _, child := range m.children {
552 for key, theirs := range other.children {
553 ours, found := m.children[key]
557 m.children[key] = theirs
[all …]
/build/make/tools/product_config/src/com/android/build/config/
DFlattenConfig.java219 final Map<Str, Map<String, Value>> children = new HashMap(); in flattenListVars() local
223 children.put(child, flattenListVars(child, seen)); in flattenListVars()
233 final Map<String, Value> child = children.get(inherit.getFilename()); in flattenListVars()
334 final TreeSet<Str> children = new TreeSet(); in flattenInheritsFrom() local
337 children.add(inherit.getFilename()); in flattenInheritsFrom()
342 if (children.size() > 0) { in flattenInheritsFrom()
346 for (Str child: children) { in flattenInheritsFrom()
/build/make/tools/droiddoc/templates-pdk/assets/design/
Ddefault.js96 var $oldUl = $old.children('ul');
108 var $ul = $(this).children('ul');
/build/make/tools/droiddoc/templates-pdk/assets/
Dandroid-developer-reference.js120 node.children = Array();
220 mom.children[i] = new_node(me, mom, node_data[0], node_data[1],
294 me.node.children = new Array();
309 mom = mom.children[j];
Dandroid-developer-docs.css179 #side-nav #nav-tree ul li span.no-children {
Djquery-resizable.min.js12children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"ifr… method
/build/make/tools/check-flagged-apis/src/com/android/checkflaggedapis/
DMain.kt328 val children = cls.getChildNodes() in parseApiVersions() constant
329 for (j in 0.rangeUntil(children.getLength())) { in parseApiVersions()
330 val child = children.item(j) in parseApiVersions()
/build/make/core/
Dproduct_config.rbc119 # Each PCM is represented by a quadruple of function, config, children names
159 children = handle.inherited_modules
161 rblf_log(" ", " ".join(children.keys()))
163 # so children.keys() will be ordered by the inherit() calls
164 configs[name] = (pcm, handle.cfg, children.keys(), False)
166 for child_name in __sort_pcm_names(children.keys()):
168 configs[child_name] = (children[child_name], None, [], False)
327 """Percolates the settings that are present only in children."""
/build/soong/scripts/hiddenapi/
Danalyze_bcpf.py1279 children = n.child_nodes()
1280 if children:
1281 for child in children: