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

1 2

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeissamenode01.js 86 Using isSameNode to check if 2 Document nodes that are equal but do not reference the
91 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
111 isSame = doc1.isSameNode(doc2);
nodeissamenode02.js 80 Using isSameNode check if 2 DocumentType nodes that reference the same object are
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
104 isSame = docType1.isSameNode(docType2);
nodeissamenode03.js 78 Using isSameNode check if 2 Element nodes that reference the same object are
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
102 isSame = element2.isSameNode(element1);
nodeissamenode04.js 78 Using isSameNode check if 2 Element nodes that are equal but do not reference the
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
100 isSame = element2.isSameNode(element1);
nodeissamenode05.js 80 Using isSameNode check if 2 Document Element nodes that reference the same object are
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
104 isSame = element2.isSameNode(element1);
nodeissamenode06.js 78 Using isSameNode check if 2 Document Element nodes that reference the same object are
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
106 isSame = attr1.isSameNode(attr2);
nodeissamenode07.js 80 Using isSameNode check if 2 Entity nodes that reference the same object are
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
108 isSame = entity1.isSameNode(entity2);
nodeissamenode08.js 80 Using isSameNode check if 2 Notation nodes that reference the same object are
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
108 isSame = notation1.isSameNode(notation2);
nodeissamenode09.js 80 Using isSameNode check if an Entity and its docType nodes are not the same.
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
105 isSame = docType.isSameNode(entity);
nodeissamenode10.js 78 Using isSameNode check if an new Document and a new Element node are not the same.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isSameNode
112 isSame = newDoc.isSameNode(element);
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java     [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.h 210 virtual HRESULT STDMETHODCALLTYPE isSameNode(
434 virtual HRESULT STDMETHODCALLTYPE isSameNode(
436 /* [retval][out] */ BOOL* result) { return DOMNode::isSameNode(other, result); }
665 virtual HRESULT STDMETHODCALLTYPE isSameNode(
667 /* [retval][out] */ BOOL* result) { return DOMNode::isSameNode(other, result); }
    [all...]
DOMHTMLClasses.h 290 virtual HRESULT STDMETHODCALLTYPE isSameNode(
292 /* [retval][out] */ BOOL* result) { return DOMDocument::isSameNode(other, result); }
564 virtual HRESULT STDMETHODCALLTYPE isSameNode(
566 /* [retval][out] */ BOOL* result) { return DOMElement::isSameNode(other, result); }
    [all...]
DOMCoreClasses.cpp 351 HRESULT STDMETHODCALLTYPE DOMNode::isSameNode(
370 *result = m_node->isSameNode(domOther->node()) ? TRUE : FALSE;
    [all...]
  /external/webkit/Source/WebCore/dom/
Node.idl 102 boolean isSameNode(in Node other);
Node.h 175 bool isSameNode(Node* other) const { return this == other; }
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 195 * tested with <code>Node.isSameNode</code>. All nodes that are the same
535 public boolean isSameNode(Node other) {
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 241 public boolean isSameNode(Node other) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 195 public boolean isSameNode(Node other) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 1260 * tested with <code>Node.isSameNode</code>. All nodes that are the same
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 440 public boolean isSameNode(Node other) {
  /external/webkit/Source/WebKit/win/Interfaces/
DOMCore.idl 223 - (BOOL)isSameNode:(DOMNode *)other;
225 HRESULT isSameNode([in] IDOMNode* other, [out, retval] BOOL* result);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java     [all...]
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h 305 - (BOOL)isSameNode:(DOMNode *)other AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
    [all...]

Completed in 869 milliseconds

1 2