Searched refs:doctype (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementation.java75 * @param doctype The type of document to be created or <code>null</code>.
76 * When <code>doctype</code> is not <code>null</code>, its
81 * <code>doctype</code> are <code>null</code>, the returned
97 * <br>WRONG_DOCUMENT_ERR: Raised if <code>doctype</code> has already
107 DocumentType doctype)
105 createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDOMImplementationImpl.java43 DocumentType doctype) throws DOMException {
44 return new DocumentImpl(this, namespaceURI, qualifiedName, doctype, null);
42 createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
H A DNodeImpl.java614 DocumentTypeImpl doctype = (DocumentTypeImpl) node;
615 values.add(doctype.getPublicId());
616 values.add(doctype.getSystemId());
617 values.add(doctype.getInternalSubset());
618 values.add(doctype.getEntities());
619 values.add(doctype.getNotations());
H A DDocumentImpl.java77 String qualifiedName, DocumentType doctype, String inputEncoding) {
83 if (doctype != null) {
84 appendChild(doctype);
187 * When we support entities in the doctype, this will need to
76 DocumentImpl(DOMImplementationImpl impl, String namespaceURI, String qualifiedName, DocumentType doctype, String inputEncoding) argument
/libcore/dom/src/test/java/org/w3c/domts/
H A DJTidyDOMImplementation.java89 * @param doctype The type of document to be created or <code>null</code>.
90 * When <code>doctype</code> is not <code>null</code>, its
106 * <br>WRONG_DOCUMENT_ERR: Raised if <code>doctype</code> has already
119 DocumentType doctype) throws DOMException {
117 createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java99 private DocumentType doctype; field in class:DomTest
135 // doctype nodes
136 doctype = document.getDoctype();
137 if (doctype.getEntities() != null) {
138 sp = (Entity) doctype.getEntities().item(0);
140 if (doctype.getNotations() != null) {
141 png = (Notation) doctype.getNotations().item(0);
177 allNodes.addAll(Arrays.asList(document, doctype, menu, item, itemXmlns,
201 assertEquals(null, doctype.lookupNamespaceURI("a"));
234 assertEquals(null, doctype
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java98 DocumentType doctype = null;
102 dom, namespaceURI, qualifiedName, doctype, inputEncoding);

Completed in 151 milliseconds