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

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/
NamedNodeMap.java 117 public Node getNamedItemNS(String namespaceURI,
  /external/webkit/WebCore/dom/
NamedNodeMap.idl 44 [OldStyleObjC] Node getNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapgetnameditemns01.java 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation "notation1"
39 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
88 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
namednodemapgetnameditemns06.java 36 * Since NamedNodeMaps are live each one should get updated, using the getNamedItemNS retreive
41 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
87 attribute = (Attr) attributesMap1.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
90 attribute = (Attr) attributesMap2.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
namednodemapremovenameditemns04.java 81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
getNamedItemNS02.java 34 * The "getNamedItemNS(namespaceURI,localName)" method for a
42 * method getNamedItemNS(namespaceURI,localName).
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
81 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
getNamedItemNS03.java 35 * getNamedItemNS.
38 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
getNamedItemNS04.java 35 * getNamedItemNS.
38 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
attrgetownerelement01.java 86 attr = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
attrgetownerelement05.java 89 attr = (Attr) nodeMap.getNamedItemNS(nullNS, "street");
getNamedItemNS01.java 34 * The "getNamedItemNS(namespaceURI,localName)" method for a
41 * method getNamedItemNS(namespaceURI,localName).
84 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
namednodemapgetnameditemns02.java 34 * The method getNamedItemNS retrieves a node specified by local name and namespace URI.
36 * Using the method getNamedItemNS, retreive an attribute node having namespaceURI=http://www.nist.gov
42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
82 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", "domestic");
namednodemapgetnameditemns03.java 34 * The method getNamedItemNS retrieves a node specified by local name and namespace URI.
37 * namespace names and namespace prefixes to it. Using the getNamedItemNS retreive the second attribute node.
41 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
86 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapgetnameditemns04.java 34 * The method getNamedItemNS retrieves a node specified by local name and namespace URI.
38 * and add it to this element. Using the getNamedItemNS retreive the newly created attribute
43 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
namednodemapgetnameditemns05.java 34 * The method getNamedItemNS retrieves a node specified by local name and namespace URI.
42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
81 attribute = (Attr) attributes.getNamedItemNS("*", "street");
namednodemapremovenameditemns01.java 80 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", "domestic");
namednodemapremovenameditemns02.java 89 attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
namednodemapremovenameditemns03.java 87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapremovenameditemns09.java 84 attribute = (Attr) newAttributes.getNamedItemNS("http://www.nist.gov", "domestic");
namednodemapsetnameditemns01.java 43 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "streets");
namednodemapsetnameditemns02.java 85 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "att");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 39 * Using the method getNamedItemNS, retreive the entity "ent1" and notation
46 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
101 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
103 // notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
109 method = "getNamedItemNS",
124 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
132 method = "getNamedItemNS",
151 attribute = (Attr) attributes.getNamedItemNS(
159 method = "getNamedItemNS",
    [all...]
GetNamedItemNS.java 17 * The "getNamedItemNS(namespaceURI,localName)" method for a NamedNodeMap should
23 * method getNamedItemNS(namespaceURI,localName).
31 public final class GetNamedItemNS extends DOMTestCase {
77 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
85 method = "getNamedItemNS",
100 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
116 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
132 // notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
NamedNodeMapRemoveNamedItemNS.java 100 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
121 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
153 attribute = (Attr) attributes.getNamedItemNS(
176 attribute = (Attr) attributes.getNamedItemNS(
180 attribute = (Attr) attributes.getNamedItemNS(
337 attribute = (Attr) newAttributes.getNamedItemNS("http://www.nist.gov",
NamedNodeMapSetNamedItemNS.java 54 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
111 attribute = (Attr) attributes.getNamedItemNS(
136 attribute = (Attr) attributes.getNamedItemNS(
169 attr = (Attr) attributesAlt.getNamedItemNS(nullNS, "street");
275 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
307 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
339 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com",

Completed in 2900 milliseconds

1 2 3