HomeSort by relevance Sort by last modified time
    Searched refs:NamedNodeMap (Results 226 - 250 of 378) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
removeNamedItemNS02.java 35 * NamedNodeMap should raise NOT_FOUND_ERR DOMException if
77 NamedNodeMap attributes;
setNamedItemNS02.java 35 * NamedNodeMap should raise WRONG_DOCUMENT_ERR DOMException if arg was
40 * Access the namednodemap of the first "address" element in this document.
79 NamedNodeMap attributes;
setNamedItemNS03.java 35 * NamedNodeMap should add a node using its namespaceURI and localName given that
75 NamedNodeMap attributes;
setNamedItemNS05.java 35 * NamedNodeMap should replace an existing node n1 found in the map with arg if n1
75 NamedNodeMap attributes;
importNode09.java 73 NamedNodeMap entityList;
removeNamedItemNS03.java 35 * NamedNodeMap should raise NO_MODIFICATION_ALLOWED_ERR DOMException if
86 NamedNodeMap attributes;
setNamedItemNS04.java 35 * NamedNodeMap should raise NO_MODIFICATION_ALLOWED_ERR DOMException if
86 NamedNodeMap attributes;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 29 import org.w3c.dom.NamedNodeMap;
82 public NamedNodeMap getAttributes() {
511 NamedNodeMap attributes = node.getAttributes();
576 NamedNodeMap attributes = node.getAttributes();
658 } else if (a instanceof NamedNodeMap) {
659 if (!(b instanceof NamedNodeMap)
660 || !namedNodeMapsEqual((NamedNodeMap) a, (NamedNodeMap) b)) {
678 private boolean namedNodeMapsEqual(NamedNodeMap a, NamedNodeMap b)
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.h 30 #include "NamedNodeMap.h"
217 NamedNodeMap* attributes(bool readonly = false) const;
222 void setAttributeMap(PassRefPtr<NamedNodeMap>, FragmentScriptingPermission = FragmentScriptingAllowed);
223 NamedNodeMap* attributeMap() const { return m_attributeMap.get(); }
418 mutable RefPtr<NamedNodeMap> m_attributeMap;
451 inline NamedNodeMap* Node::attributes() const
462 inline NamedNodeMap* Element::attributes(bool readonly) const
  /external/webkit/Source/WebCore/bindings/objc/
DOMUtility.mm 110 WRAP(NamedNodeMap)
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.h 152 void processFakeStartTag(const QualifiedName&, PassRefPtr<NamedNodeMap> attributes = 0);
175 PassRefPtr<NamedNodeMap> attributesForIsindexInput(AtomicHTMLToken&);
HTMLConstructionSite.cpp 193 NamedNodeMap* attributes = element->attributes(false);
392 PassRefPtr<NamedNodeMap> cloneAttributes(Element* element)
394 NamedNodeMap* attributes = element->attributes(true);
398 RefPtr<NamedNodeMap> newAttributes = NamedNodeMap::create();
HTMLToken.h 29 #include "NamedNodeMap.h"
415 AtomicHTMLToken(HTMLToken::Type type, AtomicString name, PassRefPtr<NamedNodeMap> attributes = 0)
451 NamedNodeMap* attributes() const
457 PassRefPtr<NamedNodeMap> takeAtributes()
532 RefPtr<NamedNodeMap> m_attributes;
541 m_attributes = NamedNodeMap::create();
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederr.java 81 NamedNodeMap attrList;
documenttypegetentities.java 31 * The "getEntities()" method is a NamedNodeMap that contains
35 * a NamedNodeMap of all its entities. The entire map is
66 NamedNodeMap entityList;
hc_attrinsertbefore3.java 62 NamedNodeMap attributes;
hc_attrinsertbefore4.java 62 NamedNodeMap attributes;
hc_attrinsertbefore7.java 64 NamedNodeMap attributes;
hc_attrreplacechild2.java 62 NamedNodeMap attributes;
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 94 * <code>NamedNodeMap</code></td>
261 * A <code>NamedNodeMap</code> containing the attributes of this node (if
264 public NamedNodeMap getAttributes();
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 29 import org.w3c.dom.NamedNodeMap;
88 public NamedNodeMap getAttributes() {return null;}
327 NamedNodeMap map = this.getAttributes();
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestInnerClass.java 19 import org.w3c.dom.NamedNodeMap;
66 NamedNodeMap collection) {
181 public int size(NamedNodeMap collection) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidDocumentChange.java 42 import org.w3c.dom.NamedNodeMap;
118 NamedNodeMap attributes = node.getAttributes();
150 NamedNodeMap attributes = node.getAttributes();
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 109 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
118 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
127 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
136 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
147 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
157 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
166 shouldBe("element.attributes.toString()", "'[object NamedNodeMap]'");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 30 import org.w3c.dom.NamedNodeMap;
320 NamedNodeMap atts = elem_node.getAttributes();
469 NamedNodeMap atts = elem_node.getAttributes();

Completed in 399 milliseconds

1 2 3 4 5 6 7 8 91011>>