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

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/
NamedNodeMap.java 117 public Node getNamedItemNS(String namespaceURI,
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation
41 * 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>
95 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
97 // notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
133 attribute = (Attr) attributes.getNamedItemNS(
152 attribute = (Attr) attributes.getNamedItemNS(
167 attribute = (Attr) attributes.getNamedItemNS("*", "street");
189 // attribute = (Attr) attributesMap1.getNamedItemNS(
    [all...]
GetNamedItemNS.java 12 * The "getNamedItemNS(namespaceURI,localName)" method for a NamedNodeMap should
18 * method getNamedItemNS(namespaceURI,localName).
25 public final class GetNamedItemNS extends DOMTestCase {
65 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
82 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
98 // entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
114 // notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
NamedNodeMapSetNamedItemNS.java 49 * 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>
99 attribute = (Attr) attributes.getNamedItemNS(
118 attribute = (Attr) attributes.getNamedItemNS(
145 attr = (Attr) attributesAlt.getNamedItemNS(nullNS, "street");
239 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
265 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
291 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
NamedNodeMapRemoveNamedItemNS.java 88 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
109 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
135 attribute = (Attr) attributes.getNamedItemNS(
152 attribute = (Attr) attributes.getNamedItemNS(
156 attribute = (Attr) attributes.getNamedItemNS(
289 attribute = (Attr) newAttributes.getNamedItemNS("http://www.nist.gov",
  /external/webkit/Source/WebCore/dom/
NamedNodeMap.idl 45 [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");

Completed in 540 milliseconds

1 2 3