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

1 2 3 4 5 6 78 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_commentgetcomment.java 72 NamedNodeMap attributes; local
84 attributes = child.getAttributes();
85 assertNull("attributes", attributes);
hc_documentgetdoctype.java 62 NamedNodeMap attributes; local
83 attributes = docType.getAttributes();
84 assertNull("attributes", attributes);
hc_elementremoveattributeaftercreate.java 70 NamedNodeMap attributes; local
78 attributes = testEmployee.getAttributes();
79 districtAttr = (Attr) attributes.getNamedItem("lang");
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_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_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_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);
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);
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");
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);
  /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");
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");
namednodemapgetnameditemns05.java 39 * namespace doesnot apply to attributes this should return null.
73 NamedNodeMap attributes; local
80 attributes = element.getAttributes();
81 attribute = (Attr) attributes.getNamedItemNS("*", "street");
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");
namednodemapsetnameditemns04.java 80 NamedNodeMap attributes; local
90 attributes = element.getAttributes();
98 newNode = attributes.setNamedItemNS(attrAlt);
namednodemapsetnameditemns10.java 76 NamedNodeMap attributes; local
89 attributes = element.getAttributes();
94 newNode = attributes.setNamedItemNS(entity);
namednodemapsetnameditemns11.java 76 NamedNodeMap attributes; local
90 attributes = element.getAttributes();
95 newNode = attributes.setNamedItemNS(notation);

Completed in 288 milliseconds

1 2 3 4 5 6 78 91011>>