HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 176 - 200 of 925) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapsetnameditem.java 35 * object from the attributes of the last child by
76 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 setNode = attributes.setNamedItem(newAttribute);
86 districtNode = (Attr) attributes.getNamedItem("district");
namednodemapsetnameditemthatexists.java 36 * object from the attributes of the last child by
78 NamedNodeMap attributes; local
86 attributes = testAddress.getAttributes();
87 setNode = attributes.setNamedItem(newAttribute);
88 districtNode = (Attr) attributes.getNamedItem("street");
namednodemapwrongdocumenterr.java 36 * Create a NamedNodeMap object from the attributes of the
76 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
89 setNode = attributes.setNamedItem(newAttribute);
nodecloneattributescopied.java 32 * Element node, all the attributes of the Element are
38 * attributes associated with this node.
69 NamedNodeMap attributes; local
82 attributes = clonedNode.getAttributes();
83 for (int indexN10065 = 0; indexN10065 < attributes.getLength(); indexN10065++) {
84 attributeNode = (Node) attributes.item(indexN10065);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
attrgetownerelement01.java 79 NamedNodeMap attributes; local
85 attributes = element.getAttributes();
86 attr = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
elementsetattributenodens01.java 83 NamedNodeMap attributes; local
98 attributes = element.getAttributes();
99 length = (int) attributes.getLength();
getNamedItemNS01.java 38 * Access the second element from the list and get its attributes.
77 NamedNodeMap attributes; local
83 attributes = testEmployee.getAttributes();
84 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
importNode07.java 37 * If this document defines default attributes for this element name (importedNode),
38 * those default attributes are assigned.
83 NamedNodeMap attributes; local
93 attributes = aNode.getAttributes();
94 assertSize("throw_Size", 1, attributes);
97 attr = attributes.item(0);
namednodemapgetnameditemns02.java 73 NamedNodeMap attributes; local
81 attributes = element.getAttributes();
82 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", "domestic");
namednodemapgetnameditemns03.java 72 NamedNodeMap attributes; local
85 attributes = element.getAttributes();
86 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapgetnameditemns04.java 39 * node from a nodemap of attributes of the retreive element node.
74 NamedNodeMap attributes; local
86 attributes = element.getAttributes();
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
namednodemapremovenameditemns02.java 36 * attributes attached to an element, as returned by the attributes attribute of the Node
77 NamedNodeMap attributes; local
87 attributes = element.getAttributes();
88 attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
89 attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
namednodemapremovenameditemns03.java 72 NamedNodeMap attributes; local
85 attributes = element.getAttributes();
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.w3.org/DOM/L1", "att");
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapremovenameditemns04.java 36 * Attempt to remove the xmlns and dmstc attributes of the first element node with the localName
37 * employee. Verify if the 2 attributes were successfully removed.
71 NamedNodeMap attributes; local
79 attributes = element.getAttributes();
80 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
83 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
namednodemapremovenameditemns06.java 73 NamedNodeMap attributes; local
80 attributes = element.getAttributes();
85 attribute = (Attr) attributes.removeNamedItemNS("http://www.Nist.gov", "domestic");
namednodemapremovenameditemns07.java 73 NamedNodeMap attributes; local
80 attributes = element.getAttributes();
85 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", "domestic");
namednodemapremovenameditemns08.java 75 NamedNodeMap attributes; local
82 attributes = element.getAttributes();
88 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", "domestic");
namednodemapremovenameditemns09.java 73 NamedNodeMap attributes; local
81 attributes = element.getAttributes();
82 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", "domestic");
namednodemapsetnameditemns01.java 39 * and put its attributes into a named node map. Create a new attribute node and add it to this map.
74 NamedNodeMap attributes; local
84 attributes = element.getAttributes();
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "streets");
namednodemapsetnameditemns02.java 74 NamedNodeMap attributes; local
83 attributes = element.getAttributes();
84 newNode = attributes.setNamedItemNS(attribute1);
85 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "att");
namednodemapsetnameditemns03.java 79 NamedNodeMap attributes; local
92 attributes = element.getAttributes();
103 newNode = attributes.setNamedItemNS(attr);
namednodemapsetnameditemns04.java 80 NamedNodeMap attributes; local
90 attributes = element.getAttributes();
98 newNode = attributes.setNamedItemNS(attrAlt);
namednodemapsetnameditemns06.java 34 * Retreieve the first element whose localName is address and its attributes into a named node map.
36 * Retreieve the second element whose localName is address and its attributes into a named node map.
72 NamedNodeMap attributes; local
80 attributes = element.getAttributes();
81 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
83 attributes = element.getAttributes();
88 newNode = attributes.setNamedItemNS(attr);
namednodemapsetnameditemns07.java 38 * Retreieve the attributes of first element whose localName is address into a named node map.
40 * from the NamedNodeMap. Retreieve the attributes of second element whose localName is address
78 NamedNodeMap attributes; local
86 attributes = element.getAttributes();
87 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
89 attributes = element.getAttributes();
94 newNode = attributes.setNamedItemNS(attr);
namednodemapsetnameditemns08.java 36 * Retreieve the first element whose localName is address and its attributes into a named node map.
38 * localName is address and its attributes into a named node map. Invoke setNamedItemNS on the
74 NamedNodeMap attributes; local
82 attributes = element.getAttributes();
83 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
85 attributes = element.getAttributes();
90 newNode = attributes.setNamedItemNS(attr);

Completed in 455 milliseconds

1 2 3 4 5 6 78 91011>>