/libcore/luni/src/test/java/tests/org/w3c/dom/ |
GetAttributeNodeNS.java | 32 * The "getAttributeNodeNS(namespaceURI,localName)" method retrieves an 35 * Retrieve the first emp:address element node. The getAttributeNodeNS method 45 public final class GetAttributeNodeNS extends DOMTestCase { 85 attribute = testAddr.getAttributeNodeNS(namespaceURI, localName); 98 attribute = testAddr.getAttributeNodeNS("http://www.nist.gov",
|
ElementGetAttributeNodeNS.java | 10 * The method getAttributeNodeNS retrieves an Attr node by local name and 71 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", 98 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", 117 // attribute = element.getAttributeNodeNS(nullNS, "defaultAttr");
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getAttributeNodeNS01.java | 34 * The "getAttributeNodeNS(namespaceURI,localName)" method retrieves an 38 * The getAttributeNodeNS method returns an 78 attribute = testAddr.getAttributeNodeNS(namespaceURI, localName);
|
attrgetownerelement04.java | 82 attr = element.getAttributeNodeNS("http://www.nist.gov", "zone");
|
documentimportnode02.java | 91 attr = element.getAttributeNodeNS("http://www.nist.gov", "zone");
|
documentimportnode14.java | 91 attrNode = ((Element) /*Node */imported).getAttributeNodeNS(nullNS, "defaultAttr");
|
elementgetattributenodens02.java | 34 * The method getAttributeNodeNS retrieves an Attr node by local name and namespace URI. 35 * Create a new element node and add a new attribute node to it. Using the getAttributeNodeNS, 79 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
|
elementgetattributenodens03.java | 34 * The method getAttributeNodeNS retrieves an Attr node by local name and namespace URI. 35 * Using the getAttributeNodeNS, retrieve and verify the value of the default 82 attribute = element.getAttributeNodeNS(nullNS, "defaultAttr");
|
elementsetattributenodens01.java | 93 attrNode = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/att1", "att");
|
elementsetattributenodens02.java | 86 attribute = element.getAttributeNodeNS(nullNS, "street");
|
elementsetattributenodens03.java | 85 attribute = element1.getAttributeNodeNS(nullNS, "street");
|
elementsetattributens01.java | 36 * Check if the attribute was correctly set by invoking the getAttributeNodeNS method 79 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr");
|
elementsetattributens02.java | 38 * getAttributeNodeNS method and checking the nodeName and nodeValue of the returned nodes. 82 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "street");
|
elementsetattributens03.java | 38 * Check if the attribute was correctly set by invoking the getAttributeNodeNS method 85 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/1", "defaultAttr");
|
getAttributeNodeNS02.java | 34 * The "getAttributeNodeNS(namespaceURI,localName)" method retrieves an 38 * The getAttributeNodeNS method returns an 82 attribute = testAddr.getAttributeNodeNS("http://www.nist.gov", "domestic");
|
namespaceURI01.java | 83 addrAttr = testAddr.getAttributeNodeNS("http://www.nist.gov", "district");
|
namespaceURI02.java | 81 addrAttr = testAddr.getAttributeNodeNS("http://www.nist.gov", "domestic");
|
nodesetprefix02.java | 87 attribute = element.getAttributeNodeNS("http://www.usa.com", "domestic");
|
nodesetprefix04.java | 81 attribute = element.getAttributeNodeNS(nullNS, "defaultAttr");
|
removeAttributeNS02.java | 93 addrAttr = ((Element) /*Node */testAddr).getAttributeNodeNS("http://www.nist.gov", "local1");
|
setAttributeNS04.java | 91 addrAttr = ((Element) /*Node */testAddr).getAttributeNodeNS("http://www.nist.gov", "zone");
|
setAttributeNS09.java | 86 addrAttr = ((Element) /*Node */testAddr).getAttributeNodeNS(namespaceURI, localName);
|
/libcore/luni/src/main/java/org/w3c/dom/ |
Element.java | 102 * use the <code>getAttributeNodeNS</code> method. 275 public Attr getAttributeNodeNS(String namespaceURI,
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
ElementImpl.java | 93 Attr attr = getAttributeNodeNS(namespaceURI, localName); 112 public AttrImpl getAttributeNodeNS(String namespaceURI, String localName) { 259 Attr attr = getAttributeNodeNS(namespaceURI, qualifiedName); 343 return ElementImpl.this.getAttributeNodeNS(namespaceURI, localName); 404 AttrImpl attr = getAttributeNodeNS(namespaceURI, localName);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
NamedNodeMap.cpp | 55 return m_element->getAttributeNodeNS(namespaceURI, localName);
|