HomeSort by relevance Sort by last modified time
    Searched refs:docType (Results 26 - 50 of 233) sorted by null

12 3 4 5 6 7 8 910

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
hc_entitiessetnameditemns1.java 61 DocumentType docType;
65 docType = doc.getDoctype();
70 assertNotNull("docTypeNotNull", docType);
71 entities = docType.getEntities();
hc_notationsremovenameditemns1.java 61 DocumentType docType;
64 docType = doc.getDoctype();
69 assertNotNull("docTypeNotNull", docType);
70 notations = docType.getNotations();
hc_notationssetnameditemns1.java 61 DocumentType docType;
65 docType = doc.getDoctype();
70 assertNotNull("docTypeNotNull", docType);
71 notations = docType.getNotations();
createDocument03.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if parameter doctype has been used with a different document.
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
39 * this domimplementation where doctype is the type of this document.
72 DocumentType docType;
76 docType = doc.getDoctype();
82 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
documenttypeinternalSubset01.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset</a>
66 DocumentType docType;
73 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
74 internal = docType.getInternalSubset();
documenttypepublicid01.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
66 DocumentType docType;
73 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
74 publicId = docType.getPublicId();
getNamedItemNS03.java 64 DocumentType docType;
70 docType = doc.getDoctype();
71 entities = docType.getEntities();
getNamedItemNS04.java 64 DocumentType docType;
70 docType = doc.getDoctype();
71 notations = docType.getNotations();
importNode16.java 73 DocumentType docType;
77 docType = anotherDoc.getDoctype();
82 node = doc.importNode(docType, false);
internalSubset01.java 43 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset</a>
68 DocumentType docType;
71 docType = doc.getDoctype();
72 internal = docType.getInternalSubset();
nodehasattributes02.java 48 * Retrieve the docType node. Since this is not an element node check if hasAttributes returns
77 DocumentType docType;
80 docType = doc.getDoctype();
81 hasAttributes = docType.hasAttributes();
nodeissupported03.java 50 * Call the isSupported method specifying empty strings for feature and version on a docType
79 DocumentType docType;
82 docType = doc.getDoctype();
83 success = docType.isSupported("", "");
publicId01.java 42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
67 DocumentType docType;
70 docType = doc.getDoctype();
71 publicId = docType.getPublicId();
systemId01.java 42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
67 DocumentType docType;
71 docType = doc.getDoctype();
72 systemId = docType.getSystemId();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentTypeSystemId.java 38 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
69 DocumentType docType;
75 docType = domImpl.createDocumentType("l2:root", "PUB", "SYS");
76 publicId = docType.getPublicId();
77 systemId = docType.getSystemId();
DocumentTypeInternalSubset.java 18 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset</a>
53 DocumentType docType;
60 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
61 internal = docType.getInternalSubset();
DocumentTypePublicId.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
72 DocumentType docType;
79 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
80 publicId = docType.getPublicId();
InternalSubset.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset</a>
71 DocumentType docType;
74 docType = doc.getDoctype();
75 internal = docType.getInternalSubset();
PublicId.java 39 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
70 DocumentType docType;
73 docType = doc.getDoctype();
74 publicId = docType.getPublicId();
SystemId.java 39 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
72 DocumentType docType;
76 docType = doc.getDoctype();
77 systemId = docType.getSystemId();
NodeGetOwnerDocument.java 79 DocumentType docType;
84 docType = domImpl.createDocumentType("mydoc", nullID, nullID);
85 ownerDoc = docType.getOwnerDocument();
95 DocumentType docType;
100 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS);
102 docType);
DOMImplementationCreateDocument.java 59 DocumentType docType = null;
80 docType);
91 DocumentType docType = null;
99 domImpl.createDocument(namespaceURI, qualifiedName, docType);
112 DocumentType docType = null;
120 domImpl.createDocument(namespaceURI, qualifiedName, docType);
132 DocumentType docType = null;
140 domImpl.createDocument(namespaceURI, ":", docType);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetdoctypenodtd.java 68 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNull("documentGetDocTypeNoDTDAssert", docType);
documenttypegetnotations.java 65 DocumentType docType;
76 docType = doc.getDoctype();
77 assertNotNull("docTypeNotNull", docType);
78 notationList = docType.getNotations();
entitygetpublicid.java 67 DocumentType docType;
74 docType = doc.getDoctype();
75 assertNotNull("docTypeNotNull", docType);
76 entityList = docType.getEntities();

Completed in 594 milliseconds

12 3 4 5 6 7 8 910