/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");
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementSetAttributeNS.java | 16 * The method setAttributeNS adds a new attribute. Create a new element and add 17 * a new attribute node to it using the setAttributeNS method. Check if the 63 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", 66 "http://www.w3.org/DOM/Test/setAttributeNS", "attr"); 82 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", 85 "http://www.w3.org/DOM/Test/setAttributeNS", "street"); 104 element.setAttributeNS("http://www.w3.org/DOM/Test/1", "defaultAttr", 106 element.setAttributeNS("http://www.w3.org/DOM/Test/2", "defaultAttr" [all...] |
SetAttributeNS.java | 34 * The "setAttributeNS(namespaceURI,qualifiedName,Value)" method raises a 50 public final class SetAttributeNS extends DOMTestCase { 92 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 114 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 153 // genElement.setAttributeNS(namespaceURI, qualifiedName, 174 ((Element) /* Node */testAddr).setAttributeNS("http://www.nist.gov", 202 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 221 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 242 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 266 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI [all...] |
GetAttributeNS.java | 141 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,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LinearLayoutWeightFix.java | 63 element.setAttributeNS(ANDROID_URI, dimension, VALUE_ZERO_DP);
|
SetScrollViewSizeFix.java | 58 element.setAttributeNS(ANDROID_URI, attributeName, VALUE_WRAP_CONTENT);
|
/packages/apps/Mms/src/com/android/mms/dom/ |
ElementImpl.java | 114 public void setAttributeNS(String namespaceURI, String qualifiedName,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
PaletteMetadataDescriptor.java | 115 domElement.setAttributeNS(nameSpace, name, value);
|