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

1 2 3 4 5 6 7

  /external/webkit/WebCore/dom/
DocumentType.cpp 24 #include "DocumentType.h"
32 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId)
40 KURL DocumentType::baseURI() const
45 String DocumentType::nodeName() const
50 Node::NodeType DocumentType::nodeType() const
55 PassRefPtr<Node> DocumentType::cloneNode(bool /*deep*/)
60 void DocumentType::insertedIntoDocument()
72 void DocumentType::removedFromDocument()
DocumentType.h 33 class DocumentType : public Node {
35 static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId)
37 return adoptRef(new DocumentType(document, name, publicId, systemId));
49 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
DOMImplementation.idl 32 [OldStyleObjC] DocumentType createDocumentType(in [ConvertUndefinedOrNullToNullString] DOMString qualifiedName,
38 in [ConvertNullToNullString] DocumentType doctype)
DocumentType.idl 24 ] DocumentType : Node {
DOMImplementation.h 34 class DocumentType;
47 static PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String &systemId, ExceptionCode&);
48 static PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
  /libcore/luni/src/main/java/org/w3c/dom/
DocumentType.java 17 * is either <code>null</code> or a <code>DocumentType</code> object. The
18 * <code>DocumentType</code> interface in the DOM Core provides an interface
22 * <p>DOM Level 3 doesn't support editing <code>DocumentType</code> nodes.
23 * <code>DocumentType</code> nodes are read-only.
26 public interface DocumentType extends Node {
DOMImplementation.java 34 * Creates an empty <code>DocumentType</code> node. Entity declarations
41 * @return A new <code>DocumentType</code> node with
53 public DocumentType createDocumentType(String qualifiedName,
61 * <br>Note that based on the <code>DocumentType</code> given to create
65 * . On the other hand, setting the <code>DocumentType</code> after the
107 DocumentType doctype)
  /external/webkit/WebCore/bindings/objc/
DOMImplementationFront.h 37 class DocumentType;
49 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
50 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
DOMImplementationFront.cpp 25 #include "DocumentType.h"
57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec)
62 PassRefPtr<Document> DOMImplementationFront::createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType* type, ExceptionCode& ec)
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 18 import org.w3c.dom.DocumentType;
52 * Creates an empty <code>DocumentType</code> node. Entity declarations
56 * <code>DocumentType</code>.
61 * @return A new <code>DocumentType</code> node with
76 public DocumentType createDocumentType(String qualifiedName,
119 DocumentType doctype) throws DOMException {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
OwnerDocument.java 31 import org.w3c.dom.DocumentType;
37 * node itself is a DocumentType which is not used with any document yet.
40 * document. The DocumentType returned should be null.
81 DocumentType ownerDocument;
83 ownerDocument = (DocumentType) doc.getOwnerDocument();
DOMImplementationCreateDocument.java 13 import org.w3c.dom.DocumentType;
65 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
71 DocumentType docType = null;
100 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
109 DocumentType docType = null;
128 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
136 DocumentType docType = null;
155 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
162 DocumentType docType = null;
CreateDocument.java 34 import org.w3c.dom.DocumentType;
93 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
99 DocumentType docType = null;
119 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
126 DocumentType docType = null;
147 // DocumentType docType;
168 // DocumentType docType;
190 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class}
196 DocumentType docType = null;
248 args = {java.lang.String.class, java.lang.String.class, org.w3c.dom.DocumentType.class
    [all...]
DocumentTypeInternalSubset.java 8 import org.w3c.dom.DocumentType;
17 * Create a new DocumentType node with null values for publicId and systemId.
27 @TestTargetClass(DocumentType.class)
65 DocumentType docType;
DocumentTypePublicId.java 31 import org.w3c.dom.DocumentType;
41 * Create a new DocumentType node with the value "PUB" for its publicId.
48 @TestTargetClass(DocumentType.class)
84 DocumentType docType;
DocumentTypeSystemId.java 30 import org.w3c.dom.DocumentType;
39 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for
45 @TestTargetClass(DocumentType.class)
81 DocumentType docType;
InternalSubset.java 30 import org.w3c.dom.DocumentType;
40 * Retrieve the documenttype.
47 @TestTargetClass(DocumentType.class)
83 DocumentType docType;
PublicId.java 30 import org.w3c.dom.DocumentType;
36 * The "getPublicId()" method of a documenttype node contains
39 * Retrieve the documenttype.
46 @TestTargetClass(DocumentType.class)
82 DocumentType docType;
SystemId.java 29 import org.w3c.dom.DocumentType;
35 * The "getSystemId()" method of a documenttype node contains the system
38 * Retrieve the documenttype. Apply the "getSystemId()" method. The string
46 @TestTargetClass(DocumentType.class)
84 DocumentType docType;
NodeGetOwnerDocument.java 31 import org.w3c.dom.DocumentType;
41 * Create a new DocumentType node. Since this node is not used with any Document
91 DocumentType docType;
113 DocumentType docType;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
ownerDocument01.java 35 * node itself is a DocumentType which is not used with any document yet.
38 * document. The DocumentType returned should be null.
66 DocumentType ownerDocument;
68 ownerDocument = (DocumentType) doc.getOwnerDocument();
importNode12.java 71 DocumentType doc1Type;
76 DocumentType docType;
importNode13.java 72 DocumentType doc1Type;
77 DocumentType docType;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 22 import org.w3c.dom.DocumentType;
43 DocumentType doctype) throws DOMException {
47 public DocumentType createDocumentType(String qualifiedName,
DocumentTypeImpl.java 20 import org.w3c.dom.DocumentType;
34 public final class DocumentTypeImpl extends LeafNodeImpl implements DocumentType {

Completed in 1943 milliseconds

1 2 3 4 5 6 7