Home
last modified time | relevance | path

Searched refs:tagName (Results 1 – 8 of 8) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DJUnitXmlParser.java158 String getMandatoryAttribute(String tagName, String attrName, Attributes attributes) in getMandatoryAttribute() argument
165 attrName, tagName)); in getMandatoryAttribute()
173 long getTimeMillis(String tagName, Attributes attributes) throws SAXException { in getTimeMillis() argument
184 String.format("%s.time value '%s' is not a number", tagName, value), e); in getTimeMillis()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DAnnotationsMerger.kt418 val rootTag = root.tagName in <lambda>()
567 val tagName = element.tagName in <lambda>() constant
568 assert(tagName == "annotation") { tagName } in <lambda>()
620 val tagName = annotationElement.tagName in <lambda>() constant
621 assert(tagName == "annotation") { tagName } in <lambda>()
/tools/tradefederation/contrib/src/com/android/regression/tests/
DMetricsXmlParser.java111 private String getMandatoryAttribute(String tagName, String attrName, Attributes attributes) in getMandatoryAttribute() argument
118 attrName, tagName)); in getMandatoryAttribute()
/tools/test/graphicsbenchmark/performance_tests/helper/src/com/android/game/qualification/
DGameCoreConfigurationXmlParser.java108 private <T> List<T> parseList(Element element, String tagName, Function<Element, T> parser) { in parseList() argument
109 NodeList nodeList = element.getElementsByTagName(tagName); in parseList()
/tools/asuite/atest/bazel/reporter/javatests/com/android/tradefed/result/
DBazelXmlResultReporterTest.java178 Path filePath, String tagName, String attributeName, String attributeValue) in assertXmlFileContainsTagWithAttribute() argument
185 doc.getElementsByTagName(tagName).item(0), attributeName, attributeValue); in assertXmlFileContainsTagWithAttribute()
/tools/metalava/metalava-model-psi/src/main/java/com/android/tools/metalava/model/psi/
DJavadoc.kt167 val tagName = if (tagSection.startsWith("@")) tagSection else "@param $tagSection" in mergeDocumentation() constant
168 return insertInto(doc, "$tagName $newText", offset) in mergeDocumentation()
/tools/tradefederation/core/src/com/android/tradefed/result/suite/
DXmlSuiteResultFormatter.java726 XmlPullParser parser, TestRunResult currentModule, String tagName, LogDataType type) in parseSingleFiles() argument
731 parser.require(XmlPullParser.END_TAG, NS, tagName); in parseSingleFiles()
/tools/carrier_settings/java/
DCarrierConfigConverterV2.java502 private static ImmutableList<Element> getElementsByTagName(Document xmlDoc, String tagName) { in getElementsByTagName() argument
508 NodeList nodeList = xmlDoc.getElementsByTagName(tagName); in getElementsByTagName()