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

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS02.java 66 Attr attribute1; local
74 attribute1 = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:xml");
75 name = attribute1.getName();
76 nodeName = attribute1.getNodeName();
77 nodeValue = attribute1.getNodeValue();
78 prefix = attribute1.getPrefix();
79 namespaceURI = attribute1.getNamespaceURI();
elementsetattributenodens01.java 77 Attr attribute1; local
88 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p1:att");
91 newAttribute = element.setAttributeNodeNS(attribute1);
namednodemapremovenameditemns03.java 76 Attr attribute1; local
81 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att");
82 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute1);
namednodemapsetnameditemns02.java 77 Attr attribute1; local
82 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att");
84 newNode = attributes.setNamedItemNS(attribute1);
elementgetattributenodens01.java 72 Attr attribute1; local
84 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2", "l2:att");
85 newAttribute1 = element.setAttributeNodeNS(attribute1);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelementcasesensitive.java 68 String attribute1; local
75 attribute1 = newElement1.getAttribute("district");
77 assertEquals("attrib1", "Fort Worth", attribute1);
hc_documentcreateelementcasesensitive.java 70 String attribute1; local
79 attribute1 = newElement1.getAttribute("lang");
81 assertEquals("attrib1", "EN", attribute1);
  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 82 Attribute attribute1 = (Attribute)object1; 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 53 Attr attribute1; local
65 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2",
67 element.setAttributeNodeNS(attribute1);
DocumentCreateAttributeNS.java 103 Attr attribute1; local
111 attribute1 = doc.createAttributeNS(
113 name = attribute1.getName();
114 nodeName = attribute1.getNodeName();
115 nodeValue = attribute1.getNodeValue();
116 prefix = attribute1.getPrefix();
117 namespaceURI = attribute1.getNamespaceURI();
ElementSetAttributeNodeNS.java 79 Attr attribute1; local
91 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1",
96 element.setAttributeNodeNS(attribute1);
NamedNodeMapRemoveNamedItemNS.java 121 Attr attribute1; local
126 attribute1 = doc
128 ((Element) /* Node */element).setAttributeNodeNS(attribute1);
NamedNodeMapSetNamedItemNS.java 109 Attr attribute1; local
114 attribute1 = doc
117 attributes.setNamedItemNS(attribute1);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentcreateelementcasesensitive.js 100 var attribute1;
114 attribute1 = newElement1.getAttribute("lang");
116 assertEquals("attrib1","EN",attribute1);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentcreateelementcasesensitive.js 100 var attribute1;
114 attribute1 = newElement1.getAttribute("lang");
116 assertEquals("attrib1","EN",attribute1);

Completed in 507 milliseconds