OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DocumentType
(Results
1 - 25
of
205
) 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
/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)
64
//
DocumentType
can only be inserted into a Document.
72
void
DocumentType
::removedFrom(ContainerNode* insertionPoint
[
all
...]
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));
51
DocumentType
(Document*, const String& name, const String& publicId, const String& systemId);
67
DEFINE_NODE_TYPE_CASTS(
DocumentType
, nodeType() == Node::DOCUMENT_TYPE_NODE);
DOMImplementation.idl
31
[RaisesException]
DocumentType
createDocumentType(DOMString qualifiedName,
36
[Default=Undefined] optional
DocumentType
doctype);
DOMImplementation.h
36
class
DocumentType
;
53
PassRefPtr<
DocumentType
> createDocumentType(const AtomicString& qualifiedName, const String& publicId, const String& systemId, ExceptionState&);
54
PassRefPtr<Document> createDocument(const AtomicString& namespaceURI, const AtomicString& qualifiedName,
DocumentType
*, ExceptionState&);
/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;
/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();
importNode12.java
71
DocumentType
doc1Type;
76
DocumentType
docType;
/external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceClient.h
41
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 579 milliseconds
1
2
3
4
5
6
7
8
9