Searched defs:newAttr (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
H A DElement.java118 * @param newAttr The <code>Attr</code> node to add to the attribute list.
119 * @return If the <code>newAttr</code> attribute replaces an existing
123 * WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
126 * <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
131 public Attr setAttributeNode(Attr newAttr) argument
287 * @param newAttr The <code>Attr</code> node to add to the attribute list.
288 * @return If the <code>newAttr</code> attribute replaces an existing
293 * WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
296 * <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
305 public Attr setAttributeNodeNS(Attr newAttr) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DElementImpl.java269 public Attr setAttributeNode(Attr newAttr) throws DOMException { argument
270 AttrImpl newAttrImpl = (AttrImpl) newAttr;
282 int i = indexOfAttribute(newAttr.getName());
294 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException { argument
295 AttrImpl newAttrImpl = (AttrImpl) newAttr;
307 int i = indexOfAttributeNS(newAttr.getNamespaceURI(), newAttr.getLocalName());

Completed in 46 milliseconds