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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/web/
WebDocumentType.cpp 34 #include "core/dom/DocumentType.h"
44 return WebString(constUnwrap<DocumentType>()->name());
47 WebDocumentType::WebDocumentType(const PassRefPtr<DocumentType>& elem)
52 WebDocumentType& WebDocumentType::operator=(const PassRefPtr<DocumentType>& elem)
58 WebDocumentType::operator PassRefPtr<DocumentType>() const
60 return static_cast<DocumentType*>(m_private.get());
  /external/chromium_org/third_party/WebKit/public/web/
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;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentType.cpp 24 #include "core/dom/DocumentType.h"
31 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 Node::InsertionNotificationRequest DocumentType::insertedInto(ContainerNode* insertionPoint)
77 void DocumentType::removedFrom(ContainerNode* insertionPoint)
DocumentType.idl 20 interface DocumentType : Node {
35 DocumentType implements ChildNode;
DocumentType.h 33 class DocumentType FINAL : 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));
50 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
DOMImplementation.h 35 class DocumentType;
52 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionState&);
53 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionState&);
DOMImplementation.idl 32 [RaisesException] DocumentType createDocumentType([TreatNullAs=NullString, TreatUndefinedAs=NullString,Default=Undefined] optional DOMString qualifiedName,
37 [TreatNullAs=NullString,Default=Undefined] optional DocumentType doctype);
  /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)
  /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();
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ResourceClient.h 41 DocumentType,
DocumentResource.h 56 static ResourceClientType expectedType() { return DocumentType; }
  /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 540 milliseconds

1 2 3 4 5 6 7 8 9