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

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/WebKit/chromium/src/
WebDocumentType.cpp 34 #include "DocumentType.h"
45 return WebString(constUnwrap<DocumentType>()->name());
48 WebDocumentType::WebDocumentType(const PassRefPtr<DocumentType>& elem)
53 WebDocumentType& WebDocumentType::operator=(const PassRefPtr<DocumentType>& elem)
59 WebDocumentType::operator PassRefPtr<DocumentType>() const
61 return static_cast<DocumentType*>(m_private.get());
  /external/webkit/Source/WebCore/dom/
DocumentType.cpp 24 #include "DocumentType.h"
31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId)
39 KURL DocumentType::baseURI() const
44 String DocumentType::nodeName() const
49 Node::NodeType DocumentType::nodeType() const
54 PassRefPtr<Node> DocumentType::cloneNode(bool /*deep*/)
59 void DocumentType::insertedIntoDocument()
71 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 34 [OldStyleObjC] DocumentType createDocumentType(in [ConvertUndefinedOrNullToNullString] DOMString qualifiedName,
40 in [ConvertNullToNullString] DocumentType doctype)
DocumentType.idl 24 ] DocumentType : Node {
DOMImplementation.h 35 class DocumentType;
48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
49 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
  /external/webkit/Source/WebKit/chromium/public/
WebDocumentType.h 37 namespace WebCore { class DocumentType; }
60 WebDocumentType(const WTF::PassRefPtr<WebCore::DocumentType>&);
61 WebDocumentType& operator=(const WTF::PassRefPtr<WebCore::DocumentType>&);
62 operator WTF::PassRefPtr<WebCore::DocumentType>() const;
  /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/Source/WebCore/bindings/objc/
DOMImplementationFront.h 37 class DocumentType;
48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
49 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 26 import org.w3c.dom.DocumentType;
32 * node itself is a DocumentType which is not used with any document yet.
35 * document. The DocumentType returned should be null.
69 DocumentType ownerDocument;
71 ownerDocument = (DocumentType) doc.getOwnerDocument();
DocumentTypeInternalSubset.java 3 import org.w3c.dom.DocumentType;
12 * Create a new DocumentType node with null values for publicId and systemId.
53 DocumentType docType;
DocumentTypePublicId.java 26 import org.w3c.dom.DocumentType;
36 * Create a new DocumentType node with the value "PUB" for its publicId.
72 DocumentType docType;
DocumentTypeSystemId.java 25 import org.w3c.dom.DocumentType;
34 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for
69 DocumentType docType;
InternalSubset.java 25 import org.w3c.dom.DocumentType;
35 * Retrieve the documenttype.
71 DocumentType docType;
PublicId.java 25 import org.w3c.dom.DocumentType;
31 * The "getPublicId()" method of a documenttype node contains
34 * Retrieve the documenttype.
70 DocumentType docType;
SystemId.java 24 import org.w3c.dom.DocumentType;
30 * The "getSystemId()" method of a documenttype node contains the system
33 * Retrieve the documenttype. Apply the "getSystemId()" method. The string
72 DocumentType docType;
DOMImplementationCreateDocument.java 8 import org.w3c.dom.DocumentType;
59 DocumentType docType = null;
91 DocumentType docType = null;
112 DocumentType docType = null;
132 DocumentType docType = null;
NodeGetOwnerDocument.java 26 import org.w3c.dom.DocumentType;
36 * Create a new DocumentType node. Since this node is not used with any Document
79 DocumentType docType;
95 DocumentType docType;
HCEntitiesRemoveNamedItemNS.java 25 import org.w3c.dom.DocumentType;
71 // DocumentType docType;
HCEntitiesSetNamedItemNS.java 7 import org.w3c.dom.DocumentType;
54 // 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();
  /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,

Completed in 175 milliseconds

1 2 3 4 5 6 7 8 9