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

1 2

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeisdefaultnamespace08.js 82 Using isDefaultNamespace on an Element node with a prefix, which has a namespace
83 attribute declaration with a namespace prefix and check if isDefaultNamespace
88 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
105 isDefault = elem.isDefaultNamespace("http://www.altavista.com");
nodeisdefaultnamespace06.js 79 Using isDefaultNamespace on an Element node with no prefix, which has a namespace
80 attribute declaration with and without a namespace prefix and check if isDefaultNamespace
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
102 isDefault = elem.isDefaultNamespace("http://www.w3.org/1999/xhtml");
104 isDefault = elem.isDefaultNamespace("http://www.usa.com");
nodeisdefaultnamespace07.js 79 Using isDefaultNamespace on the child of an Element node with no prefix, which has a
80 namespace attribute declaration with and without a namespace prefix and check if isDefaultNamespace
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
102 isDefault = elem.isDefaultNamespace("http://www.w3.org/1999/xhtml");
104 isDefault = elem.isDefaultNamespace("http://www.usa.com");
nodeisdefaultnamespace01.js 79 Using isDefaultNamespace on this Document node with the
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
103 isDefault = doc.isDefaultNamespace(docElemNS);
nodeisdefaultnamespace03.js 82 Using isDefaultNamespace on this DocumentType node with the value of the namespaceURI parameter
87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
105 isDefault = docType.isDefaultNamespace(nullNSURI);
nodeisdefaultnamespace16.js 78 Using isDefaultNamespace on a new Attribute node with with a namespace URI
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
99 isDefault = attr.isDefaultNamespace("http://www.w3.org/XML/1998/namespace");
nodeisdefaultnamespace02.js 79 Using isDefaultNamespace on on a new Document node with the value of the namespaceURI
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
115 isDefault = newDoc.isDefaultNamespace(rootNS);
117 isDefault = newDoc.isDefaultNamespace(nullNSURI);
nodeisdefaultnamespace04.js 82 Using isDefaultNamespace on a Notation and Entity node with the value of the namespaceURI parameter
87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
115 isDefault = entity.isDefaultNamespace(nullNSURI);
117 isDefault = notation.isDefaultNamespace(nullNSURI);
nodeisdefaultnamespace05.js 79 Using isDefaultNamespace on a DocumentElement of a new Document node with the value of the
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
118 isDefault = elem.isDefaultNamespace(rootNS);
120 isDefault = elem.isDefaultNamespace(nullNSURI);
nodeisdefaultnamespace09.js 79 Using isDefaultNamespace on a new Child of a new Element node with a namespace URI
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
104 isDefault = parent.isDefaultNamespace("http://www.w3.org/1999/xhtml");
106 isDefault = child.isDefaultNamespace("http://www.w3.org/1999/xhtml");
nodeisdefaultnamespace10.js 79 Using isDefaultNamespace on a new Child of a new Element node with a namespace URI
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
104 isDefault = child.isDefaultNamespace("http://www.w3.org/1999/xhtml");
106 isDefault = parent.isDefaultNamespace("http://www.w3.org/1999/xhtml");
nodeisdefaultnamespace11.js 79 Using isDefaultNamespace on an imported new Element node with a namespace URI and prefix
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
117 isDefault = importedNode.isDefaultNamespace("http://www.w3.org/1999/xhtml");
nodeisdefaultnamespace13.js 79 Using isDefaultNamespace on a Element's new Text node, which has a namespace attribute
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
109 isDefault = txt.isDefaultNamespace("http://www.w3.org/1999/xhtml");
nodeisdefaultnamespace14.js 78 Using isDefaultNamespace on a Element's new CDATASection node, which has a namespace attribute
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
108 isDefault = cdata.isDefaultNamespace("http://www.w3.org/1999/xhtml");
nodeisdefaultnamespace15.js 78 Using isDefaultNamespace on a Element's new cloned Comment node, which has a namespace attribute
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Node3-isDefaultNamespace
110 isDefault = clonedComment.isDefaultNamespace("http://www.w3.org/1999/xhtml");
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 347 assertFalse(document.isDefaultNamespace("http://food"));
348 assertFalse(doctype.isDefaultNamespace("http://food"));
350 assertFalse(sp.isDefaultNamespace("http://food"));
353 assertFalse(png.isDefaultNamespace("http://food"));
355 assertFalse(menu.isDefaultNamespace("http://food"));
356 assertTrue(item.isDefaultNamespace("http://food"));
357 assertTrue(itemXmlns.isDefaultNamespace("http://food"));
358 assertTrue(itemXmlnsA.isDefaultNamespace("http://food"));
359 assertTrue(name.isDefaultNamespace("http://food"));
360 assertTrue(standard.isDefaultNamespace("http://food"))
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java     [all...]
  /external/webkit/Source/WebCore/dom/
Node.idl 105 boolean isDefaultNamespace(in [ConvertNullToNullString] DOMString namespaceURI);
Node.cpp     [all...]
Node.h 177 bool isDefaultNamespace(const AtomicString& namespaceURI) const;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 400 public boolean isDefaultNamespace(String namespaceURI){
430 return ancestor.isDefaultNamespace(namespaceURI);
435 return((NodeImpl)((Document)this).getDocumentElement()).isDefaultNamespace(namespaceURI);
446 return ownerNode.isDefaultNamespace(namespaceURI);
454 return ancestor.isDefaultNamespace(namespaceURI);
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 249 public boolean isDefaultNamespace(String namespaceURI) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 259 public boolean isDefaultNamespace(String namespaceURI) {
  /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     [all...]

Completed in 414 milliseconds

1 2