Searched refs:nodes (Results 1 – 7 of 7) sorted by relevance
/tools/tradefederation/core/tests/src/com/android/tradefed/result/suite/ |
D | XmlSuiteResultFormatterTest.java | 654 NodeList nodes = getXmlNodes(xml, xPathExpression); in assertXmlContainsNode() local 657 nodes); in assertXmlContainsNode() 662 xml, xPathExpression, nodes.getLength()), in assertXmlContainsNode() 663 nodes.getLength() >= 1); in assertXmlContainsNode() 664 return nodes; in assertXmlContainsNode() 670 NodeList nodes = getXmlNodes(xml, xPathExpression); in assertXmlNotContainNode() local 673 nodes); in assertXmlNotContainNode() 678 xml, xPathExpression, nodes.getLength()), in assertXmlNotContainNode() 680 nodes.getLength()); in assertXmlNotContainNode() 689 NodeList nodes = assertXmlContainsNode(xml, xPathExpression); in assertXmlContainsValue() local [all …]
|
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ |
D | Asn1DerEncoder.java | 271 String[] nodes = oid.split("\\."); in toOid() local 272 if (nodes.length < 2) { in toOid() 278 firstNode = Integer.parseInt(nodes[0]); in toOid() 280 throw new Asn1EncodingException("Node #1 not numeric: " + nodes[0]); in toOid() 288 secondNode = Integer.parseInt(nodes[1]); in toOid() 290 throw new Asn1EncodingException("Node #2 not numeric: " + nodes[1]); in toOid() 302 for (int i = 2; i < nodes.length; i++) { in toOid() 303 String nodeString = nodes[i]; in toOid()
|
/tools/apksig/src/main/java/com/android/apksig/ |
D | SigningCertificateLineage.java | 448 List<SigningCertificateNode> nodes = in read() local 451 int minSdkVersion = calculateMinSdkVersion(nodes); in read() 452 return new SigningCertificateLineage(minSdkVersion, nodes); in read() 464 private static int calculateMinSdkVersion(List<SigningCertificateNode> nodes) { in calculateMinSdkVersion() argument 465 if (nodes == null) { in calculateMinSdkVersion() 469 for (SigningCertificateNode node : nodes) { in calculateMinSdkVersion()
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/ |
D | V3SigningCertificateLineage.java | 183 List<byte[]> nodes = new ArrayList<>(); in encodeSigningCertificateLineage() local 185 nodes.add(encodeSigningCertificateNode(node)); in encodeSigningCertificateLineage() 187 byte [] encodedSigningCertificateLineage = encodeAsSequenceOfLengthPrefixedElements(nodes); in encodeSigningCertificateLineage()
|
/tools/tradefederation/contrib/src/com/android/performance/tests/ |
D | GLBenchmarkTest.java | 234 NodeList nodes = doc.getElementsByTagName("test_result"); in parseResultXml() local 235 for (int i = 0; i < nodes.getLength(); i++) { in parseResultXml() 236 Node node = nodes.item(i); in parseResultXml()
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | AnnotationStatistics.kt | 433 val nodes = method.instructions in <lambda>() constant 434 for (i in 0 until nodes.size()) { in <lambda>() 435 val instruction = nodes.get(i) in <lambda>()
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 83 number of addressable nodes, and simpler auto-configuration of 87 a packet to any one of a group of nodes. 148 link - a communication facility or medium over which nodes can 155 neighbors - nodes attached to the same link. 322 the node (or each of the set of nodes, in the case of multicast) 346 the source and destination nodes. The Hop-by-Hop Options header, 428 IPv6 nodes must accept and attempt to process extension headers in 626 intermediate nodes to be "visited" on the way to a packet's 656 listed intermediate nodes still to be visited 793 listed intermediate nodes still to be visited [all …]
|