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

1 2 3 4 5 6 78 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrreplacechild1.java 62 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrreplacechild2.java 62 NamedNodeMap attributes; local
73 attributes = testNode.getAttributes();
74 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrsetvalue1.java 60 NamedNodeMap attributes; local
69 attributes = testNode.getAttributes();
70 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrsetvalue2.java 60 NamedNodeMap attributes; local
70 attributes = testNode.getAttributes();
71 titleAttr = (Attr) attributes.getNamedItem("title");
hc_commentgetcomment.java 72 NamedNodeMap attributes; local
84 attributes = child.getAttributes();
85 assertNull("attributes", attributes);
hc_elementretrieveallattributes.java 31 * Create a list of all the attributes of the last child
64 NamedNodeMap attributes; local
79 attributes = testAddress.getAttributes();
80 for (int indexN1006B = 0; indexN1006B < attributes.getLength(); indexN1006B++) {
81 attribute = (Attr) attributes.item(indexN1006B);
hc_namednodemapinuseattributeerr.java 34 * Create a NamedNodeMap object from the attributes of the
70 NamedNodeMap attributes; local
82 attributes = testNode.getAttributes();
87 setNode = attributes.setNamedItem(domesticAttr);
hc_namednodemapreturnfirstitem.java 34 * Retrieve the second "acronym" get the NamedNodeMap of the attributes. Since the
68 NamedNodeMap attributes; local
85 attributes = testAddress.getAttributes();
86 for (int indexN10070 = 0; indexN10070 < attributes.getLength(); indexN10070++) {
87 child = (Node) attributes.item(indexN10070);
hc_namednodemapreturnlastitem.java 70 NamedNodeMap attributes; local
87 attributes = testEmployee.getAttributes();
88 for (int indexN10070 = 0; indexN10070 < attributes.getLength(); indexN10070++) {
89 child = (Node) attributes.item(indexN10070);
hc_namednodemapsetnameditem.java 32 * object from the attributes of the last child by
74 NamedNodeMap attributes; local
82 attributes = testAddress.getAttributes();
83 setNode = attributes.setNamedItem(newAttribute);
84 districtNode = (Attr) attributes.getNamedItem("lang");
hc_namednodemapsetnameditemthatexists.java 36 * object from the attributes of the last child by
77 NamedNodeMap attributes; local
85 attributes = testAddress.getAttributes();
86 setNode = attributes.setNamedItem(newAttribute);
87 districtNode = (Attr) attributes.getNamedItem("class");
hc_namednodemapwrongdocumenterr.java 36 * Create a NamedNodeMap object from the attributes of the
75 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
89 setNode = attributes.setNamedItem(newAttribute);
hc_nodecloneattributescopied.java 34 * attributes associated with this node.
66 NamedNodeMap attributes; local
84 attributes = clonedNode.getAttributes();
85 for (int indexN10076 = 0; indexN10076 < attributes.getLength(); indexN10076++) {
86 attributeNode = (Node) attributes.item(indexN10076);
namednodemapinuseattributeerr.java 34 * Create a NamedNodeMap object from the attributes of the
71 NamedNodeMap attributes; local
83 attributes = testNode.getAttributes();
88 setNode = attributes.setNamedItem(domesticAttr);
namednodemapremovenameditem.java 35 * object of the attributes of the last child. Once the
77 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 assertNotNull("attributesNotNull", attributes);
86 removedNode = attributes.removeNamedItem("street");
87 streetAttr = (Attr) attributes.getNamedItem("street");
namednodemapremovenameditemgetvalue.java 36 * object of the attributes of the last child. Once the
41 * immediately be the attributes value.
79 NamedNodeMap attributes; local
86 attributes = testEmployee.getAttributes();
87 assertNotNull("attributesNotNull", attributes);
88 removedNode = attributes.removeNamedItem("street");
89 streetAttr = (Attr) attributes.getNamedItem("street");
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");

Completed in 541 milliseconds

1 2 3 4 5 6 78 91011>>