Searched refs:getAttribute (Results 1 - 25 of 50) sorted by relevance

12

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Ddocumentcreateelementcasesensitive.java75 attribute1 = newElement1.getAttribute("district");
76 attribute2 = newElement2.getAttribute("county");
H A Dhc_documentcreateelementcasesensitive.java79 attribute1 = newElement1.getAttribute("lang");
80 attribute2 = newElement2.getAttribute("title");
H A Delementaddnewattribute.java73 attrValue = testEmployee.getAttribute("district");
H A Delementchangeattributevalue.java76 attrValue = testEmployee.getAttribute("street");
H A Delementgetelementempty.java31 * The "getAttribute(name)" method returns an empty
36 * invoke "getAttribute(name)" method, where "name" is an
38 * The "getAttribute(name)" method should return the empty
79 attrValue = testEmployee.getAttribute("district");
H A Delementreplaceexistingattribute.java79 name = testEmployee.getAttribute("street");
H A Delementretrieveattrvalue.java31 * The "getAttribute(name)" method returns an attribute
35 * invoke the 'getAttribute("street")' method. This should
70 attrValue = testAddress.getAttribute("street");
H A Dhc_elementaddnewattribute.java73 attrValue = testEmployee.getAttribute("lang");
H A Dhc_elementchangeattributevalue.java75 attrValue = testEmployee.getAttribute("class");
H A Dhc_elementgetelementempty.java31 * The "getAttribute(name)" method returns an empty
36 * invoke "getAttribute(name)" method, where "strong" is an
38 * The "getAttribute(name)" method should return the empty
79 attrValue = testEmployee.getAttribute("lang");
H A Dhc_elementremoveattribute.java69 attrValue = testEmployee.getAttribute("class");
H A Dhc_elementreplaceexistingattribute.java78 strong = testEmployee.getAttribute("class");
H A Dhc_elementretrieveattrvalue.java31 * The "getAttribute(name)" method returns an attribute
35 * invoke the 'getAttribute("class")' method. This should
69 attrValue = testAddress.getAttribute("class");
H A Delementcreatenewattribute.java80 attrVal = testAddress.getAttribute("district");
H A Delementremoveattribute.java82 attrValue = testEmployee.getAttribute("street");
H A Delementremoveattributerestoredefaultvalue.java82 attribute = testEmployee.getAttribute("street");
H A Dhc_elementcreatenewattribute.java80 attrVal = testAddress.getAttribute("lang");
/libcore/luni/src/test/java/libcore/xml/
H A DSimpleBuilderTest.java83 assertEquals("eins", one.getAttribute("one"));
84 assertEquals("zwei", two.getAttribute("two"));
85 assertEquals("drei", three.getAttribute("three"));
87 assertEquals("vier", four.getAttribute("t:four"));
H A DJaxenXPathTestSuite.java90 String url = document.getAttribute("url");
119 String select = element.getAttribute("select");
152 final String select = element.getAttribute("select");
155 if (element.getAttribute("exception").equals("true")) {
171 final String valueOfSelect = valueOf.getAttribute("select");
184 final String count = element.getAttribute("count");
204 final String select = element.getAttribute("select");
292 return element.getAttribute("var:" + variableName.getLocalPart());
/libcore/ojluni/src/main/java/java/nio/file/
H A DFileStore.java205 * boolean compression = (Boolean)fs.getAttribute("zfs:compression");
220 public abstract Object getAttribute(String attribute) throws IOException; method in class:FileStore
/libcore/luni/src/test/java/libcore/java/text/
H A DOldAttributedStringTest.java210 public Object getAttribute(AttributedCharacterIterator.Attribute p) { method in class:OldAttributedStringTest.testAttributedCharacterIterator
430 .getAttribute(aci[0]).equals("value1"));
432 .getAttribute(aci[1]).equals("value2"));
434 .getAttribute(aci[2]) == null);
462 .getAttribute(aci[0]) == null);
464 .getAttribute(aci[1]) == null);
466 .getAttribute(aci[2]) == null);
471 .getAttribute(aci[0]).equals("value1"));
473 .getAttribute(aci[1]).equals("value2"));
475 .getAttribute(ac
[all...]
/libcore/ojluni/src/main/java/java/util/prefs/
H A DXmlSupport.java202 doc.getDocumentElement().getAttribute("EXTERNAL_XML_VERSION");
222 (xmlRoot.getAttribute("type").equals("user") ?
338 prefsKids[i-1] = prefsNode.node(xmlKid.getAttribute("name"));
356 prefsNode.put(entry.getAttribute("key"), entry.getAttribute("value"));
404 String mapVersion = xmlMap.getAttribute("MAP_XML_VERSION");
421 m.put(entry.getAttribute("key"), entry.getAttribute("value"));
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DProviderServiceTest.java93 s.getAttribute(null);
98 if (s.getAttribute("aaa") != null) {
99 fail("getAttribute(aaa) failed");
108 if (s.getAttribute("bbb") != null) {
109 fail("getAttribute(bbb) failed");
111 if (!s.getAttribute("attribute").equals("value")) {
112 fail("getAttribute(attribute) failed");
114 if (!s.getAttribute("KeySize").equals("1024")) {
115 fail("getAttribute(KeySize) failed");
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DPKCS9Attributes.java264 public PKCS9Attribute getAttribute(ObjectIdentifier oid) { method in class:PKCS9Attributes
271 public PKCS9Attribute getAttribute(String name) { method in class:PKCS9Attributes
286 attribs[j] = getAttribute(PKCS9Attribute.PKCS9_OIDS[i]);
300 Object value = getAttribute(oid).getValue();
334 value = getAttribute(PKCS9Attribute.PKCS9_OIDS[i]);
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformerFactory.java307 public abstract Object getAttribute(String name); method in class:TransformerFactory

Completed in 1187 milliseconds

12