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

1 2

  /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);
elementgetattributenodens01.java 32 * The method getAttributeNodeNS retrieves an Attr node by local name and namespace URI.
88 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNodeNS.java 37 * The "getAttributeNodeNS(namespaceURI,localName)" method retrieves an
40 * Retrieve the first emp:address element node. The getAttributeNodeNS method
51 public final class GetAttributeNodeNS extends DOMTestCase {
83 method = "getAttributeNodeNS",
97 attribute = testAddr.getAttributeNodeNS(namespaceURI, localName);
103 method = "getAttributeNodeNS",
116 attribute = testAddr.getAttributeNodeNS("http://www.nist.gov",
ElementGetAttributeNodeNS.java 15 * The method getAttributeNodeNS retrieves an Attr node by local name and
59 method = "getAttributeNodeNS",
83 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2",
102 method = "getAttributeNodeNS",
116 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2",
135 // attribute = element.getAttributeNodeNS(nullNS, "defaultAttr");
ElementSetAttributeNS.java 23 * attribute was correctly set by invoking the getAttributeNodeNS method and
77 attribute = element.getAttributeNodeNS(
102 attribute = element.getAttributeNodeNS(
132 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/1",
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 102 * use the <code>getAttributeNodeNS</code> method.
275 public Attr getAttributeNodeNS(String namespaceURI,

Completed in 205 milliseconds

1 2