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

1 2 34 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrparentnodenull.java 64 NamedNodeMap attributes; local
70 attributes = testNode.getAttributes();
71 domesticAttr = (Attr) attributes.getNamedItem("title");
hc_attrprevioussiblingnull.java 64 NamedNodeMap attributes; local
70 attributes = testNode.getAttributes();
71 domesticAttr = (Attr) attributes.getNamedItem("title");
hc_attrspecifiedvalue.java 67 NamedNodeMap attributes; local
73 attributes = testNode.getAttributes();
74 domesticAttr = (Attr) attributes.getNamedItem("title");
hc_attrspecifiedvaluechanged.java 68 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 streetAttr = (Attr) attributes.getNamedItem("class");
hc_documentgetdoctype.java 62 NamedNodeMap attributes; local
83 attributes = docType.getAttributes();
84 assertNull("attributes", attributes);
hc_elementassociatedattribute.java 34 * Elements can actually have attributes. This test uses
65 NamedNodeMap attributes; local
71 attributes = testEmployee.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("title");
hc_elementremoveattributeaftercreate.java 70 NamedNodeMap attributes; local
78 attributes = testEmployee.getAttributes();
79 districtAttr = (Attr) attributes.getNamedItem("lang");
hc_namednodemapchildnoderange.java 31 * Create a NamedNodeMap object from the attributes of the
66 NamedNodeMap attributes; local
73 attributes = testEmployee.getAttributes();
74 length = (int) attributes.getLength();
80 child = attributes.item(2);
84 child = attributes.item(0);
86 child = attributes.item(1);
88 child = attributes.item(3);
hc_namednodemapgetnameditem.java 32 * listing of the attributes of the last child. Once the
67 NamedNodeMap attributes; local
73 attributes = testEmployee.getAttributes();
74 domesticAttr = (Attr) attributes.getNamedItem("title");
hc_namednodemapnotfounderr.java 35 * Create a NamedNodeMap object from the attributes of the
71 NamedNodeMap attributes; local
76 attributes = testEmployee.getAttributes();
81 removedNode = attributes.removeNamedItem("lang");
hc_namednodemapnumberofnodes.java 31 * Retrieve the second "p" element and evaluate Node.attributes.length.
62 NamedNodeMap attributes; local
67 attributes = testEmployee.getAttributes();
68 length = (int) attributes.getLength();
hc_namednodemapremovenameditem.java 35 * object of the attributes of the last child. Once the
70 NamedNodeMap attributes; local
77 attributes = testAddress.getAttributes();
78 removedNode = attributes.removeNamedItem("class");
79 streetAttr = (Attr) attributes.getNamedItem("class");
hc_namednodemapreturnattrnode.java 32 * listing of the attributes of the last child. Once the
68 NamedNodeMap attributes; local
74 attributes = testEmployee.getAttributes();
75 streetAttr = attributes.getNamedItem("class");
hc_namednodemapreturnnull.java 35 * listing of the attributes of the last child. Once the
70 NamedNodeMap attributes; local
75 attributes = testEmployee.getAttributes();
76 districtNode = (Attr) attributes.getNamedItem("lang");
hc_namednodemapsetnameditemreturnvalue.java 36 * object from the attributes of the last child by
76 NamedNodeMap attributes; local
83 attributes = testAddress.getAttributes();
84 newNode = attributes.setNamedItem(newAttribute);
hc_namednodemapsetnameditemwithnewvalue.java 35 * object from the attributes of the last child.
74 NamedNodeMap attributes; local
80 attributes = testAddress.getAttributes();
81 newNode = attributes.setNamedItem(newAttribute);
namednodemapchildnoderange.java 33 * Create a NamedNodeMap object from the attributes of the
68 NamedNodeMap attributes; local
74 attributes = testEmployee.getAttributes();
75 length = (int) attributes.getLength();
77 child = attributes.item(0);
78 child = attributes.item(1);
namednodemapgetnameditem.java 35 * listing of the attributes of the last child. Once the
69 NamedNodeMap attributes; local
75 attributes = testEmployee.getAttributes();
76 domesticAttr = (Attr) attributes.getNamedItem("domestic");
namednodemapnotfounderr.java 35 * Create a NamedNodeMap object from the attributes of the
71 NamedNodeMap attributes; local
76 attributes = testEmployee.getAttributes();
81 removedNode = attributes.removeNamedItem("district");
namednodemapnumberofnodes.java 35 * listing of the attributes of the last child. Once the
68 NamedNodeMap attributes; local
73 attributes = testEmployee.getAttributes();
74 length = (int) attributes.getLength();
namednodemapremovenameditemreturnnodevalue.java 35 * object of the attributes of the last child. Once the
70 NamedNodeMap attributes; local
76 attributes = testAddress.getAttributes();
77 removedNode = attributes.removeNamedItem("street");
namednodemapreturnattrnode.java 35 * listing of the attributes of the last child. Once the
71 NamedNodeMap attributes; local
77 attributes = testEmployee.getAttributes();
78 streetAttr = attributes.getNamedItem("street");
namednodemapreturnfirstitem.java 35 * listing of the attributes of the last child. Since the
69 NamedNodeMap attributes; local
75 attributes = testAddress.getAttributes();
76 child = attributes.item(0);
namednodemapreturnlastitem.java 35 * listing of the attributes of the last child. Since the
69 NamedNodeMap attributes; local
75 attributes = testEmployee.getAttributes();
76 child = attributes.item(1);
namednodemapreturnnull.java 35 * listing of the attributes of the last child. Once the
69 NamedNodeMap attributes; local
74 attributes = testEmployee.getAttributes();
75 districtNode = (Attr) attributes.getNamedItem("district");

Completed in 3917 milliseconds

1 2 34 5 6 7 8 91011>>