HomeSort by relevance Sort by last modified time
    Searched refs:setAttributeNS (Results 1 - 25 of 49) sorted by null

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributens08.java 34 * The method setAttributeNS adds a new attribute and raises a NAMESPACE_ERR
38 * Invoke the setAttributeNS method on a new Element object with namespaceURI that is
77 element.setAttributeNS("http://www.w3.org/DOMTest/level2", "xmlns", "test");
87 element.setAttributeNS("http://www.w3.org/DOMTest/level2", "xmlns:root", "test");
elementsetattributens03.java 34 * The method setAttributeNS adds a new attribute.
37 * default attribute but different namespaceURI to it using the setAttributeNS method.
83 element.setAttributeNS("http://www.w3.org/DOM/Test/1", "defaultAttr", "default1");
84 element.setAttributeNS("http://www.w3.org/DOM/Test/2", "defaultAttr", "default2");
elementsetattributens05.java 34 * The method setAttributeNS adds a new attribute and raises a NAMESPACE_ERR if the
36 * Invoke the setAttributeNS method on a new Element object with null namespaceURI and a
76 element.setAttributeNS(nullNS, "dom:root", "test");
elementsetattributensurinull.java 47 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method raises a
94 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS01.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,Value)" method raises a
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS02.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method raises a
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS06.java 34 * The "setAttributeNS(namespaceURI,localName,value)" method raises a
82 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS07.java 34 * The "setAttributeNS(namespaceURI,localName,value)" method raises a
83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS10.java 34 * Element.setAttributeNS with an empty qualified name should cause an INVALID_CHARACTER_ERR.
74 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, "", "newValue");
elementsetattributens01.java 34 * The method setAttributeNS adds a new attribute.
35 * Create a new element and add a new attribute node to it using the setAttributeNS method.
78 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr", "value");
79 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr");
elementsetattributens02.java 34 * The method setAttributeNS adds a new attribute.
37 * the setAttributeNS method. Check if the attribute was correctly set by invoking the
81 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", "this:street", "Silver Street");
82 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "street");
elementsetattributens04.java 34 * The method setAttributeNS adds a new attribute and raises a INVALID_CHARACTER_ERR if
36 * Invoke the setAttributeNS method on this Element object with a valid value for
88 element.setAttributeNS("http://www.w3.org/DOM/Test/L2", qualifiedName, "test");
getAttributeNS04.java 39 * Add the new attribute and value with the "setAttributeNS()" method.
82 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue");
setAttributeNS03.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method for an attribute causes the
41 * "setAttributeNS(namespaceURI,qualifiedName,value)" method.
99 genElement.setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS04.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method adds a new attribute.
90 ((Element) /*Node */testAddr).setAttributeNS("http://www.nist.gov", "newprefix:zone", "newValue");
setAttributeNS05.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method adds a new attribute.
83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "<newValue>");
setAttributeNS09.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method adds a new attribute.
85 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
  /external/webkit/WebCore/bindings/generic/
BindingElement.h 48 static void setAttributeNS(State<Binding>*, Element*, const AtomicString&, const AtomicString&, const AtomicString&, ExceptionCode&);
78 void BindingElement<Binding>::setAttributeNS(State<Binding>* state, Element* element, const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& value, ExceptionCode& ec)
85 element->setAttributeNS(namespaceURI, qualifiedName, value, ec);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNS.java 21 * The method setAttributeNS adds a new attribute. Create a new element and add
22 * a new attribute node to it using the setAttributeNS method. Check if the
64 method = "setAttributeNS",
75 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS",
78 "http://www.w3.org/DOM/Test/setAttributeNS", "attr");
87 method = "setAttributeNS",
100 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS",
103 "http://www.w3.org/DOM/Test/setAttributeNS", "street")
    [all...]
SetAttributeNS.java 39 * The "setAttributeNS(namespaceURI,qualifiedName,Value)" method raises a
56 public final class SetAttributeNS extends DOMTestCase {
88 method = "setAttributeNS",
104 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
115 method = "setAttributeNS",
132 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
171 // genElement.setAttributeNS(namespaceURI, qualifiedName,
182 method = "setAttributeNS",
198 ((Element) /* Node */testAddr).setAttributeNS("http://www.nist.gov",
216 method = "setAttributeNS",
    [all...]
GetAttributeNS.java 165 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue");
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 68 * the <code>setAttributeNS</code> method.
225 public void setAttributeNS(String namespaceURI,
  /external/webkit/WebCore/bindings/js/
JSElementCustom.cpp 109 JSValue JSElement::setAttributeNS(ExecState* exec, const ArgList& args)
120 imp->setAttributeNS(namespaceURI, qualifiedName, value, ec);
  /external/webkit/WebCore/bindings/v8/custom/
V8ElementCustom.cpp 88 INC_STATS("DOM.Element.setAttributeNS()");
95 V8BindingElement::setAttributeNS(V8BindingState::Only(), element, namespaceURI, qualifiedName, value, ec);
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 114 public void setAttributeNS(String namespaceURI, String qualifiedName,

Completed in 2340 milliseconds

1 2