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

1 2 3 4 5 67 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrinsertbefore3.java 62 NamedNodeMap attributes; local
76 attributes = testNode.getAttributes();
77 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrinsertbefore4.java 62 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrinsertbefore5.java 65 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrinsertbefore6.java 63 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrinsertbefore7.java 64 NamedNodeMap attributes; local
78 attributes = testNode.getAttributes();
79 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrlastchild.java 62 NamedNodeMap attributes; local
70 attributes = testNode.getAttributes();
71 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrnormalize.java 62 NamedNodeMap attributes; local
72 attributes = testNode.getAttributes();
73 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrremovechild1.java 61 NamedNodeMap attributes; local
70 attributes = testNode.getAttributes();
71 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrremovechild2.java 61 NamedNodeMap attributes; local
69 attributes = testNode.getAttributes();
70 titleAttr = (Attr) attributes.getNamedItem("title");
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");

Completed in 517 milliseconds

1 2 3 4 5 67 8 91011>>