HomeSort by relevance Sort by last modified time
    Searched refs:newAttr (Results 26 - 50 of 85) sorted by null

12 3 4

  /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());
  /libcore/luni/src/test/java/tests/org/w3c/dom/
CreateAttributeNS.java 166 Attr newAttr;
169 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
170 attrName = newAttr.getName();
ElementSetAttributeNodeNS.java 115 Attr newAttr;
128 newAttr = element2.setAttributeNodeNS(attributeCloned);
129 attrName = newAttr.getNodeName();
130 attrValue = newAttr.getNodeValue();
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeinsertbefore03.js 90 var newAttr;
100 newAttr = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
105 inserted = doc.insertBefore(newAttr,docType);
elementsetidattributens03.js 105 employeeIdElem.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:newAttr","newValue");
106 employeeIdElem.setIdAttributeNS("http://www.w3.org/2000/xmlns/","newAttr",true);
109 attr = attributesMap.getNamedItem("xmlns:newAttr");
117 employeeIdElem.setIdAttributeNS("http://www.w3.org/2000/xmlns/","newAttr",false);
elementsetidattributens04.js 110 strongElem.setAttributeNS("http://www.netzero.com","dmstc:newAttr","newValue");
111 strongElem.setIdAttributeNS("http://www.netzero.com","newAttr",true);
114 attr = attributesMap.getNamedItem("dmstc:newAttr");
122 strongElem.setIdAttributeNS("http://www.netzero.com","newAttr",false);
documentadoptnode06.js 93 var newAttr;
128 newAttr = doc.createAttributeNS(xmlNS,"xml:lang");
131 appendedChild = newAttr.appendChild(newText);
132 appendedChild = newAttr.appendChild(newEntRef);
133 adoptedAttr = newDoc.adoptNode(newAttr);
attrisid07.js 112 acronymElem.setAttributeNS("http://www.w3.org/DOM","dom3:newAttr","null");
113 acronymElem.setIdAttributeNS("http://www.w3.org/DOM","newAttr",true);
114 attr = acronymElem.getAttributeNodeNS("http://www.w3.org/DOM","newAttr");
documentadoptnode03.js 90 var newAttr;
104 newAttr = doc.createAttributeNS(xmlNS,"xml:lang");
105 adoptedAttr = doc.adoptNode(newAttr);
documentadoptnode04.js 92 var newAttr;
119 newAttr = doc.createAttributeNS(xmlNS,"xml:lang");
120 adoptedAttr = newDoc.adoptNode(newAttr);
elementsetidattributens13.js 106 nameElem.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:newAttr","newValue");
107 nameElem.setIdAttributeNS("http://www.w3.org/2000/xmlns/","newAttr",true);
110 attr = attributesMap.getNamedItem("xmlns:newAttr");
nodeinsertbefore14.js 96 var newAttr;
106 newAttr = doc.createAttributeNS("http://www.w3.org/DOM/Test","dom3:attr");
111 inserted = docType.insertBefore(newAttr,docType);
documentsetstricterrorchecking02.js 90 var newAttr;
105 newAttr = doc.createAttributeNS(nullValue,"dom:test");
documentnormalizedocument13.js 96 var newAttr;
126 newAttr = elem.getAttributeNode("title");
145 assertSame("relatedNodeIsL1Node",newAttr,problemNode);
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 120 public Attr setAttributeNode(Attr newAttr) throws DOMException {
125 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/sources/
SdkRepoSource.java 480 Attr newAttr = null;
486 newAttr = newDoc.createAttributeNS(namespaceUri, attrName);
487 newAttr.setPrefix(prefix);
489 newAttr = newDoc.createAttribute(attrName);
492 newAttr.setNodeValue(attr.getNodeValue());
495 newNode.getAttributes().setNamedItemNS(newAttr);
497 newNode.getAttributes().setNamedItem(newAttr);
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 104 XmlAttr * newAttr = NULL;
106 newAttr = new XmlAttr(*pAttr);
107 *ppLastAttr = newAttr;
108 ppLastAttr = &(newAttr->pNextAttr_);
110 pLastAttr_ = newAttr;
  /external/clang/include/clang/Sema/
AttributeList.h 473 void add(AttributeList *newAttr) {
474 assert(newAttr);
475 assert(newAttr->getNext() == 0);
476 newAttr->setNext(list);
477 list = newAttr;
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_elementwrongdocumenterr.js 84 The "setAttributeNode(newAttr)" method raises an
85 "WRONG_DOCUMENT_ERR DOMException if the "newAttr"
95 This test uses the "createAttribute(newAttr)" method
hc_elementcreatenewattribute.js 78 The "setAttributeNode(newAttr)" method adds a new
83 "setAttributeNode(newAttr)" method. This test makes use
hc_elementinuseattributeerr.js 78 The "setAttributeNode(newAttr)" method raises an
79 "INUSE_ATTRIBUTE_ERR DOMException if the "newAttr"
hc_elementreplaceexistingattribute.js 78 The "setAttributeNode(newAttr)" method adds a new
79 attribute to the Element. If the "newAttr" Attr node is
hc_namednodemapsetnameditem.js 82 method is done with arg=newAttr, where newAttr is a
hc_namednodemapsetnameditemreturnvalue.js 86 method is done with arg=newAttr, where newAttr is a
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_elementwrongdocumenterr.js 84 The "setAttributeNode(newAttr)" method raises an
85 "WRONG_DOCUMENT_ERR DOMException if the "newAttr"
95 This test uses the "createAttribute(newAttr)" method

Completed in 1269 milliseconds

12 3 4