Home
last modified time | relevance | path

Searched refs:child (Results 1 – 25 of 28) sorted by relevance

12

/tools/asuite/asuite_plugin/src/java/com/android/atest/run/
DAtestRunConfiguration.java62 Element child = element.getChild(TEST_TARGET_KEY); in readExternal() local
63 if (hasValue(child)) { in readExternal()
64 mTestTarget = child.getTextTrim(); in readExternal()
66 child = element.getChild(LUNCH_TARGET_KEY); in readExternal()
67 if (hasValue(child)) { in readExternal()
68 mLunchTarget = child.getTextTrim(); in readExternal()
102 Element child = new Element(key); in setElementChild() local
103 child.setText(value); in setElementChild()
104 element.addContent(child); in setElementChild()
/tools/metalava/src/main/java/com/android/tools/metalava/
DComparisonVisitor.kt473 for (child in item.children) { in ensureSorted() method
474 ensureSorted(child) in ensureSorted()
488 val child = children[i] in removeDuplicates() constant
490 if (comparator.compare(child.item, prev.item) == 0) { in removeDuplicates()
491 if (prev.item!!.emit && !child.item!!.emit) { in removeDuplicates()
493 prev.children += child.children in removeDuplicates()
497 child.children += prev.children in removeDuplicates()
503 for (child in children) { in removeDuplicates() constant
504 removeDuplicates(child) in removeDuplicates()
592 for (child in children) { in prettyPrint() method
[all …]
DAnnotationsMerger.kt147 for (child in files) { in mergeFileOrDir() constant
148 mergeFileOrDir(child, mergeFile, javaStubFiles) in mergeFileOrDir()
DDriver.kt1119 for (child in files) { in skippableDirectory() constant
1120 addSourceFiles(list, child) in skippableDirectory()
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/model/
DSliceGroupBuilderTest.kt50 val child = group.endSlice { in testNestedBuild() constant
53 assertEquals(1.1, child.startTime) in testNestedBuild()
54 assertEquals(1.2, child.endTime) in testNestedBuild()
55 assertEquals("nested", child.name) in testNestedBuild()
66 assertEquals(child, slice.children.first()) in testNestedBuild()
67 assertEquals(0, child.children.size) in testNestedBuild()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/net/
Dui_utils.py144 def wait_and_get_xml_node(device, timeout, child=None, sibling=None, **kwargs): argument
165 if child and sibling:
174 if node and child:
175 node = _find_node(node, **child)
182 if child:
184 % (msg, get_key_value_pair_strings(child)))
/tools/security/sanitizer-status/
Dsanitizer-status.cpp137 pid_t child = fork(); in test() local
140 if (child == -1) { in test()
145 if (child == 0) { in test()
155 while (child == waitpid(child, &status, 0)) { in test()
/tools/platform-compat/build/
Dprocess_compat_config.py66 for child in xml.getroot():
68 id = child.attrib['id']
69 name = child.attrib['name']
70 this_change = ChangeDefinition(source, child)
86 self.tree.getroot().append(child)
/tools/apksig/src/main/java/com/android/apksig/
DSigningCertificateLineage.java117 SignerConfig child, SignerCapabilities childCapabilities) in createSigningLineage() argument
124 return signingCertificateLineage.spawnDescendant(parent, child, childCapabilities); in createSigningLineage()
318 public SigningCertificateLineage spawnDescendant(SignerConfig parent, SignerConfig child) in spawnDescendant() argument
321 if (parent == null || child == null) { in spawnDescendant()
325 return spawnDescendant(parent, child, signerCapabilities); in spawnDescendant()
337 SignerConfig parent, SignerConfig child, SignerCapabilities childCapabilities) in spawnDescendant() argument
343 if (child == null) { in spawnDescendant()
367 child.getCertificate(), signatureAlgorithm.getId())); in spawnDescendant()
392 child.getCertificate(), sigAlgorithm, null, in spawnDescendant()
/tools/asuite/aidegen/project/
Dproject_splitter.py167 for child in projects:
170 if parent is child:
173 child.project_relative_path,
176 parent.source_path[key] -= child.source_path[key]
178 child, parent.source_path[key], root)
458 def _remove_child_duplicate_sources_from_parent(child, parent_sources, root): argument
475 os.path.relpath(path, root), child.project_relative_path)):
Dproject_splitter_unittest.py282 child = mock.Mock()
283 child.project_relative_path = 'c/d'
287 child, parent_sources, root)
291 child, parent_sources, root)
/tools/treble/split/
Dmanifest_split.py154 re.compile(child.attrib["pattern"]), child.attrib["sub"])
155 for child in root.findall("path_mapping")
435 for child in root.findall("project"):
436 if child.attrib["name"] not in projects_to_keep:
437 root.remove(child)
Dmanifest_split_test.py395 child.attrib['name']
396 for child in split_manifest.getroot().findall('project')
592 child.attrib['name']
593 for child in split_manifest.getroot().findall('project')
/tools/test/graphicsbenchmark/performance_tests/helper/src/com/android/game/qualification/
DGameCoreConfigurationXmlParser.java116 Node child = children.item(i); in parseList() local
117 if (child.getNodeType() == Node.ELEMENT_NODE) { in parseList()
118 result.add(parser.apply((Element) child)); in parseList()
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/fragments/
DSliceGroupBuilder.kt90 fun add(child: MutableSliceGroup) { in add()
92 _children!!.add(child) in add()
/tools/treble/build/sandbox/
Doverlay.py414 for child in allowed_projects.getroot().findall("project"):
415 paths.add(child.attrib.get("path", child.attrib["name"]))
/tools/metalava/src/test/java/com/android/tools/metalava/model/psi/
DPsiTypePrinterTest.kt796 for (child in file.listFiles()) { in <lambda>() method
797 addFiles(child) in <lambda>()
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DJavadoc.kt1031 val child = salientElement.firstChild in extractReference() constant
1032 return if (child !is PsiReference) null else child in extractReference()
/tools/security/gdb/gdb_json_printer/
DREADME.md75 * support for print parent/child class members.
/tools/metalava/src/test/java/com/android/tools/metalava/
DAnnotationsMergerTest.kt583 fun `Merge nullability into child`() { in Merge nullability into child()
/tools/repohooks/tools/
Dspelling.txt246 chiled||child
/tools/dexter/testdata/expected/
Dmedium.rewrite9008 .params "host", "child", "event"
9174 .params "delegate", "host", "child", "event"
9303 .params "delegate", "host", "child", "event"
9466 .params "host", "child", "event"
9712 .params "host", "child", "event"
9834 .params "host", "child", "event"
9966 .params "delegate", "host", "child", "event"
10088 .params "host", "child", "event"
11189 .params "parent", "child", "event"
11228 .params "parent", "child", "event"
[all …]
Dmedium.wrap_invoke9008 .params "host", "child", "event"
9174 .params "delegate", "host", "child", "event"
9303 .params "delegate", "host", "child", "event"
9466 .params "host", "child", "event"
9712 .params "host", "child", "event"
9834 .params "host", "child", "event"
9966 .params "delegate", "host", "child", "event"
10088 .params "host", "child", "event"
11189 .params "parent", "child", "event"
11228 .params "parent", "child", "event"
[all …]
Dmedium.entry_hook9422 .params "host", "child", "event"
9599 .params "delegate", "host", "child", "event"
9739 .params "delegate", "host", "child", "event"
9911 .params "host", "child", "event"
10173 .params "host", "child", "event"
10304 .params "host", "child", "event"
10446 .params "delegate", "host", "child", "event"
10577 .params "host", "child", "event"
11753 .params "parent", "child", "event"
11794 .params "parent", "child", "event"
[all …]
Dmedium.exit_hook9759 .params "host", "child", "event"
9941 .params "delegate", "host", "child", "event"
10086 .params "delegate", "host", "child", "event"
10261 .params "host", "child", "event"
10533 .params "host", "child", "event"
10667 .params "host", "child", "event"
10813 .params "delegate", "host", "child", "event"
10947 .params "host", "child", "event"
12145 .params "parent", "child", "event"
12189 .params "parent", "child", "event"
[all …]

12