| /libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
| elementinuseattributeerr.java | 31 * The "setAttributeNode(newAttr)" method raises an 32 * "INUSE_ATTRIBUTE_ERR DOMException if the "newAttr" 37 * and "setAttributeNode(newAttr)" methods are invoked 39 * Element. The "setAttributeNode(newAttr)" method is
|
| elementcreatenewattribute.java | 31 * The "setAttributeNode(newAttr)" method adds a new 36 * "setAttributeNode(newAttr)" method. This test makes use
|
| hc_elementcreatenewattribute.java | 31 * The "setAttributeNode(newAttr)" method adds a new 36 * "setAttributeNode(newAttr)" method. This test makes use
|
| hc_namednodemapsetnameditemreturnvalue.java | 39 * method is done with arg=newAttr, where newAttr is a
|
| hc_namednodemapsetnameditemthatexists.java | 39 * method is done with arg=newAttr, where newAttr is a
|
| hc_namednodemapsetnameditemwithnewvalue.java | 37 * is invoked with arg=newAttr, where newAttr is a
|
| namednodemapsetnameditem.java | 38 * method is done with arg=newAttr, where newAttr is a
|
| namednodemapsetnameditemreturnvalue.java | 39 * method is done with arg=newAttr, where newAttr is a
|
| namednodemapsetnameditemthatexists.java | 39 * method is done with arg=newAttr, where newAttr is a
|
| namednodemapsetnameditemwithnewvalue.java | 37 * is invoked with arg=newAttr, where newAttr is a
|
| elementwrongdocumenterr.java | 31 * The "setAttributeNode(newAttr)" method raises an 32 * "WRONG_DOCUMENT_ERR DOMException if the "newAttr" 41 * This test uses the "createAttribute(newAttr)" method
|
| hc_elementwrongdocumenterr.java | 31 * The "setAttributeNode(newAttr)" method raises an 32 * "WRONG_DOCUMENT_ERR DOMException if the "newAttr" 40 * This test uses the "createAttribute(newAttr)" method
|
| /libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
| importNode01.java | 76 Attr newAttr; 96 newAttr = aNewDoc.createAttribute("elem:attr1"); 98 aNode = newAttr.appendChild(importedChild); 99 aNode = doc.importNode(newAttr, false);
|
| setAttributeNodeNS02.java | 41 * "setAttributeNodeNS(newAttr)" method. 84 Attr newAttr; 100 newAttr = doc.createAttributeNS("www.xyz.com", "emp:local1"); 105 setAttr1 = genElement.setAttributeNodeNS(newAttr);
|
| attrgetownerelement02.java | 76 Attr newAttr; 80 newAttr = element.setAttributeNodeNS(attr);
|
| createAttributeNS01.java | 73 Attr newAttr; 79 newAttr = doc.createAttributeNS(namespaceURI, malformedName);
|
| createAttributeNS02.java | 73 Attr newAttr; 79 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
| createAttributeNS04.java | 75 Attr newAttr; 81 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
| createAttributeNS06.java | 65 Attr newAttr; 71 newAttr = doc.createAttributeNS(namespaceURI, "");
|
| /libcore/luni/src/test/java/tests/org/w3c/dom/ |
| ElementSetAttributeNodeNS.java | 115 Attr newAttr; 128 newAttr = element2.setAttributeNodeNS(attributeCloned); 129 attrName = newAttr.getNodeName(); 130 attrValue = newAttr.getNodeValue();
|
| CreateAttributeNS.java | 166 Attr newAttr; 169 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName); 170 attrName = newAttr.getName();
|
| RemoveNamedItemNS.java | 82 Attr newAttr; 91 newAttr = (Attr) attributes.getNamedItem("dmstc:domestic"); 92 assertNull("nodeRemoved", newAttr);
|
| /libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
| ElementImpl.java | 269 public Attr setAttributeNode(Attr newAttr) throws DOMException { 270 AttrImpl newAttrImpl = (AttrImpl) newAttr; 282 int i = indexOfAttribute(newAttr.getName()); 294 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException { 295 AttrImpl newAttrImpl = (AttrImpl) newAttr; 307 int i = indexOfAttributeNS(newAttr.getNamespaceURI(), newAttr.getLocalName());
|
| /external/libxml2/doc/tutorial/ |
| apf.html | 16 xmlAttrPtr newattr; 40 newattr = xmlNewProp (newnode, "uri", uri);
|
| /external/webrtc/webrtc/libjingle/xmllite/ |
| xmlelement.cc | 78 XmlAttr* newAttr = NULL; 80 newAttr = new XmlAttr(*attr); 81 *plast_attr = newAttr; 82 plast_attr = &(newAttr->next_attr_); 84 last_attr_ = newAttr;
|