HomeSort by relevance Sort by last modified time
    Searched refs:attribute2 (Results 1 - 14 of 14) sorted by null

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS02.java 67 Attr attribute2; local
85 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns");
86 name = attribute2.getName();
87 nodeName = attribute2.getNodeName();
88 nodeValue = attribute2.getNodeValue();
89 prefix = attribute2.getPrefix();
90 namespaceURI = attribute2.getNamespaceURI();
elementsetattributenodens01.java 78 Attr attribute2; local
89 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p2:att");
90 attribute2.setValue("value2");
92 newAttribute = element.setAttributeNodeNS(attribute2);
elementsetattributenodens06.java 74 Attr attribute2; local
87 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr2");
92 newAttribute = element.setAttributeNodeNS(attribute2);
namednodemapremovenameditemns03.java 77 Attr attribute2; local
83 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/L2", "L2:att");
84 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute2);
elementgetattributenodens01.java 73 Attr attribute2; local
86 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", "att");
87 newAttribute2 = element.setAttributeNodeNS(attribute2);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelementcasesensitive.java 69 String attribute2; local
76 attribute2 = newElement2.getAttribute("county");
78 assertEquals("attrib2", "Dallas", attribute2);
hc_documentcreateelementcasesensitive.java 71 String attribute2; local
80 attribute2 = newElement2.getAttribute("title");
82 assertEquals("attrib2", "Dallas", attribute2);
  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 83 Attribute attribute2 = (Attribute)object2; local
85 return attribute1.u2attributeNameIndex < attribute2.u2attributeNameIndex ? -1 :
86 attribute1.u2attributeNameIndex > attribute2.u2attributeNameIndex ? 1 :
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetAttributeNodeNS.java 54 Attr attribute2; local
68 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1",
70 element.setAttributeNodeNS(attribute2);
DocumentCreateAttributeNS.java 104 Attr attribute2; local
126 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/",
128 name = attribute2.getName();
129 nodeName = attribute2.getNodeName();
130 nodeValue = attribute2.getNodeValue();
131 prefix = attribute2.getPrefix();
132 namespaceURI = attribute2.getNamespaceURI();
ElementSetAttributeNodeNS.java 80 Attr attribute2; local
93 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1",
95 attribute2.setValue("value2");
97 element.setAttributeNodeNS(attribute2);
208 Attr attribute2; local
220 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test",
226 element.setAttributeNodeNS(attribute2);
NamedNodeMapRemoveNamedItemNS.java 122 Attr attribute2; local
129 attribute2 = doc
131 ((Element) /* Node */element).setAttributeNodeNS(attribute2);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentcreateelementcasesensitive.js 101 var attribute2;
115 attribute2 = newElement2.getAttribute("title");
117 assertEquals("attrib2","Dallas",attribute2);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentcreateelementcasesensitive.js 101 var attribute2;
115 attribute2 = newElement2.getAttribute("title");
117 assertEquals("attrib2","Dallas",attribute2);

Completed in 453 milliseconds