Searched refs:isDefaultNamespace (Results 1 - 24 of 24) sorted by relevance

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodeisdefaultnamespace02.js79 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);
H A Dnodeisdefaultnamespace04.js82 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);
H A Dnodeisdefaultnamespace06.js79 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");
H A Dnodeisdefaultnamespace07.js79 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");
H A Dnodeisdefaultnamespace09.js79 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");
H A Dnodeisdefaultnamespace10.js79 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");
H A Dnodeisdefaultnamespace01.js79 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);
H A Dnodeisdefaultnamespace03.js82 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);
H A Dnodeisdefaultnamespace08.js82 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");
H A Dnodeisdefaultnamespace16.js78 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");
H A Dnodeisdefaultnamespace05.js79 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);
H A Dnodeisdefaultnamespace11.js79 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");
H A Dnodeisdefaultnamespace13.js79 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");
H A Dnodeisdefaultnamespace14.js78 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");
H A Dnodeisdefaultnamespace15.js78 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");
/external/webkit/Source/WebCore/dom/
H A DNode.idl105 boolean isDefaultNamespace(in [ConvertNullToNullString] DOMString namespaceURI);
H A DNode.cpp1925 bool Node::isDefaultNamespace(const AtomicString& namespaceURIMaybeEmpty) const function in class:WebCore::Node
1948 return ancestor->isDefaultNamespace(namespaceURI);
1954 return de->isDefaultNamespace(namespaceURI);
1964 return attr->ownerElement()->isDefaultNamespace(namespaceURI);
1969 return ancestor->isDefaultNamespace(namespaceURI);
H A DNode.h177 bool isDefaultNamespace(const AtomicString& namespaceURI) const;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java400 public boolean isDefaultNamespace(String namespaceURI){ method in class:DOM2DTMdefaultNamespaceDeclarationNode
430 return ancestor.isDefaultNamespace(namespaceURI);
435 return((NodeImpl)((Document)this).getDocumentElement()).isDefaultNamespace(namespaceURI);
446 return ownerNode.isDefaultNamespace(namespaceURI);
454 return ancestor.isDefaultNamespace(namespaceURI);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java1113 public boolean isDefaultNamespace(String namespaceURI) { method in class:ElemLiteralResult.Attribute
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java1465 public boolean isDefaultNamespace(String namespaceURI){ method in class:UnImplNode
1495 return ancestor.isDefaultNamespace(namespaceURI);
1500 return((NodeImpl)((Document)this).getDocumentElement()).isDefaultNamespace(namespaceURI);
1511 return ownerNode.isDefaultNamespace(namespaceURI);
1519 return ancestor.isDefaultNamespace(namespaceURI);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java1710 public boolean isDefaultNamespace(String namespaceURI){ method in class:DTMNodeProxy
1740 return ancestor.isDefaultNamespace(namespaceURI);
1745 return((NodeImpl)((Document)this).getDocumentElement()).isDefaultNamespace(namespaceURI);
1756 return ownerNode.isDefaultNamespace(namespaceURI);
1764 return ancestor.isDefaultNamespace(namespaceURI);
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h308 - (BOOL)isDefaultNamespace:(NSString *)namespaceURI AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 2280 milliseconds