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

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/
NamedNodeMap.java 82 public Node removeNamedItem(String name)
  /external/webkit/Source/WebCore/dom/
NamedNodeMap.idl 35 Node removeNamedItem(in DOMString name)
NamedNodeMap.h 50 PassRefPtr<Node> removeNamedItem(const String& name, ExceptionCode&);
56 PassRefPtr<Node> removeNamedItem(const QualifiedName& name, ExceptionCode&);
NamedNodeMap.cpp 71 PassRefPtr<Node> NamedNodeMap::removeNamedItem(const String& name, ExceptionCode& ec)
79 return removeNamedItem(a->name(), ec);
84 return removeNamedItem(QualifiedName(nullAtom, localName, namespaceURI), ec);
143 // because of removeNamedItem, removeNamedItemNS, and removeAttributeNode.
144 PassRefPtr<Node> NamedNodeMap::removeNamedItem(const QualifiedName& name, ExceptionCode& ec)
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_namednodemapnotfounderr.java 31 * The "removeNamedItem(name)" method raises a
81 removedNode = attributes.removeNamedItem("lang");
hc_namednodemapremovenameditem.java 31 * The "removeNamedItem(name)" method removes a node
36 * list is created invoke the "removeNamedItem(name)"
78 removedNode = attributes.removeNamedItem("class");
namednodemapnotfounderr.java 31 * The "removeNamedItem(name)" method raises a
81 removedNode = attributes.removeNamedItem("district");
namednodemapremovenameditemreturnnodevalue.java 31 * The "removeNamedItem(name)" method returns the node
36 * list is created invoke the "removeNamedItem(name)"
37 * method with name="street". The "removeNamedItem(name)"
77 removedNode = attributes.removeNamedItem("street");
hc_entitiesremovenameditem1.java 78 retval = entities.removeNamedItem("alpha");
hc_notationsremovenameditem1.java 78 retval = notations.removeNamedItem("notation1");
namednodemapremovenameditem.java 31 * The "removeNamedItem(name)" method removes a node
36 * list is created invoke the "removeNamedItem(name)"
86 removedNode = attributes.removeNamedItem("street");
namednodemapremovenameditemgetvalue.java 31 * If the node removed by the "removeNamedItem(name)" method
37 * list is created invoke the "removeNamedItem(name)"
38 * method with name="street". The "removeNamedItem(name)"
88 removedNode = attributes.removeNamedItem("street");
  /external/webkit/Source/WebCore/html/
HTMLDocument.h 75 void removeNamedItem(const AtomicString& name);
HTMLAppletElement.cpp 63 document->removeNamedItem(m_name);
96 document->removeNamedItem(m_name);
HTMLEmbedElement.cpp 118 document->removeNamedItem(m_name);
245 static_cast<HTMLDocument*>(document())->removeNamedItem(m_name);
HTMLObjectElement.cpp 113 document->removeNamedItem(m_name);
333 document->removeNamedItem(m_name);
449 document->removeNamedItem(m_name);
HTMLImageElement.cpp 151 document->removeNamedItem(m_name);
229 document->removeNamedItem(m_name);
  /packages/apps/Mms/src/com/android/mms/dom/
NamedNodeMapImpl.java 57 public Node removeNamedItem(String name) throws DOMException {
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_namednodemapremovenameditem.js 78 The "removeNamedItem(name)" method removes a node
83 list is created invoke the "removeNamedItem(name)"
113 removedNode = attributes.removeNamedItem("class");
hc_namednodemapnotfounderr.js 78 The "removeNamedItem(name)" method raises a
116 removedNode = attributes.removeNamedItem("lang");
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_namednodemapremovenameditem.js 78 The "removeNamedItem(name)" method removes a node
83 list is created invoke the "removeNamedItem(name)"
113 removedNode = attributes.removeNamedItem("class");
hc_namednodemapnotfounderr.js 78 The "removeNamedItem(name)" method raises a
116 removedNode = attributes.removeNamedItem("lang");
  /external/webkit/LayoutTests/fast/dom/Attr/script-tests/
access-after-element-destruction.js 33 attributes.removeNamedItem('a');
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNamedNodeMap.java 181 public Node removeNamedItem(String name)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockNamedNodeMap.java 93 public Node removeNamedItem(String name) throws DOMException {

Completed in 1657 milliseconds

1 2 3