/libcore/luni/src/test/java/libcore/xml/ |
D | PullParserTest.java | 34 assertEquals("checked", parser.getAttributeValue(0)); in testAttributeNoValueWithRelaxed() 44 assertEquals("true", parser.getAttributeValue(0)); in testAttributeUnquotedValueWithRelaxed() 54 assertEquals("A&W", parser.getAttributeValue(0)); in testUnterminatedEntityWithRelaxed() 162 assertEquals("b c", parser.getAttributeValue(0)); in testLineEndings() 192 assertEquals("cdbef", parser.getAttributeValue(0)); in testCustomEntitiesUsingNext() 203 assertEquals("cdbef", parser.getAttributeValue(0)); in testCustomEntitiesUsingNextToken() 219 assertEquals("& &a;", parser.getAttributeValue(0)); in testCustomEntitiesAreNotEvaluated() 265 assertEquals("&", parser.getAttributeValue(null, "bar")); in testEntityInAttributeUsingNextToken() 280 + "would resolve these to the empty string.", "&aaa;", parser.getAttributeValue(0)); in testMissingEntitiesInAttributesUsingNextWithRelaxed() 302 + "would resolve these to the empty string.", "&aaa;", parser.getAttributeValue(0)); in testMissingEntitiesInAttributesUsingNextToken() [all …]
|
D | PullParserDtdTest.java | 280 assertEquals("a", parser.getAttributeValue(null, "bar")); in testAttributeOfTypeEntity() 321 assertEquals("c", parser.getAttributeValue(null, "baz")); in testAttributeDefaultValues() 325 assertEquals("a", parser.getAttributeValue(null, "baz")); in testAttributeDefaultValues() 342 assertEquals("abc & def ghi jk", parser.getAttributeValue(null, "bar")); in testAttributeDefaultValueEntitiesExpanded() 361 assertEquals("android", parser.getAttributeValue(index)); in testAttributeDefaultValuesAndNamespaces() 396 assertEquals(null, parser.getAttributeValue(null, "bar")); in testRequiredAttributesOmitted() 410 assertEquals("a", parser.getAttributeValue(null, "bar")); in testFixedAttributesWithConflictingValues()
|
D | XmlPullParserFactoryTest.java | 342 public String getAttributeValue(int index) { in getAttributeValue() method in XmlPullParserFactoryTest.XmlPullParserStub 346 public String getAttributeValue(String namespace, String name) { in getAttributeValue() method in XmlPullParserFactoryTest.XmlPullParserStub
|
/libcore/xml/src/main/java/org/xmlpull/v1/ |
D | XmlPullParser.java | 882 String getAttributeValue(int index); in getAttributeValue() method 900 String getAttributeValue(String namespace, in getAttributeValue() method
|
/libcore/ojluni/src/main/java/sun/security/pkcs/ |
D | PKCS9Attributes.java | 297 public Object getAttributeValue(ObjectIdentifier oid) in getAttributeValue() method in PKCS9Attributes 311 public Object getAttributeValue(String name) throws IOException { in getAttributeValue() method in PKCS9Attributes 318 return getAttributeValue(oid); in getAttributeValue()
|
D | SignerInfo.java | 361 authenticatedAttributes.getAttributeValue( in verify() 369 authenticatedAttributes.getAttributeValue( in verify()
|
/libcore/ojluni/annotations/hiddenapi/sun/security/pkcs/ |
D | PKCS9Attributes.java | 88 public java.lang.Object getAttributeValue(sun.security.util.ObjectIdentifier oid) in getAttributeValue() method in PKCS9Attributes 93 public java.lang.Object getAttributeValue(java.lang.String name) throws java.io.IOException { in getAttributeValue() method in PKCS9Attributes
|
/libcore/xml/src/main/java/org/xmlpull/v1/sax2/ |
D | Driver.java | 103 public String getValue(int index) { return pp.getAttributeValue(index); } in getValue() 154 return pp.getAttributeValue(uri, localName); in getValue() 157 return pp.getAttributeValue(null, qName); in getValue()
|
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
D | DocumentBuilderImpl.java | 281 String attrValue = parser.getAttributeValue(i); in parse() 312 String attrValue = parser.getAttributeValue(i); in parse()
|
/libcore/xml/src/main/java/com/android/org/kxml2/io/ |
D | KXmlParser.java | 1163 if (getAttributeValue(null, entry.getKey()) != null) { in parseStartTag() 2025 public String getAttributeValue(int index) { in getAttributeValue() method in KXmlParser 2032 public String getAttributeValue(String namespace, String name) { in getAttributeValue() method in KXmlParser
|