Home
last modified time | relevance | path

Searched refs:DocumentType (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Doc/library/
Dxml.dom.rst186 | :class:`DocumentType` | :ref:`dom-documenttype-objects` | Information about the …
221 :class:`DocumentType` objects using the :class:`DOMImplementation` as well.
234 *doctype* must be a :class:`DocumentType` object created by
242 Return a new :class:`DocumentType` object that encapsulates the given
457 DocumentType Objects
462 available from a :class:`DocumentType` object. The :class:`DocumentType` for a
468 :class:`DocumentType` is a specialization of :class:`Node`, and adds the
472 .. attribute:: DocumentType.publicId
478 .. attribute:: DocumentType.systemId
484 .. attribute:: DocumentType.internalSubset
[all …]
Dxml.dom.minidom.rst255 * :class:`DocumentType` (added in Python 2.1)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java36 import org.w3c.dom.DocumentType;
568 public final DocumentType getDoctype() in getDoctype()
1400 public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId) in createDocumentType()
1404 …public Document createDocument(String namespaceURI,String qualfiedName,DocumentType doctype) … in createDocument()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DDOM2DTM.java46 import org.w3c.dom.DocumentType;
1286 DocumentType dtd = doc.getDoctype(); in getDocumentTypeDeclarationSystemIdentifier()
1317 DocumentType dtd = doc.getDoctype(); in getDocumentTypeDeclarationPublicIdentifier()
1422 DocumentType doctype = doc.getDoctype(); in getUnparsedEntityURI()
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DDOM3TreeWalker.java44 import org.w3c.dom.DocumentType;
409 serializeDocType((DocumentType) node, true); in startNode()
452 serializeDocType((DocumentType) node, false); in endNode()
496 protected void serializeDocType(DocumentType node, boolean bStart) in serializeDocType()
1667 DocumentType docType = node.getOwnerDocument().getDoctype(); in isEntityReferneceWellFormed()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DUnImplNode.java33 import org.w3c.dom.DocumentType;
774 public DocumentType getDoctype() in getDoctype()
DDOMHelper.java38 import org.w3c.dom.DocumentType;
1132 DocumentType doctype = doc.getDoctype(); in getUnparsedEntityURI()
/external/python/cpython2/Lib/xml/dom/
Dminidom.py1236 class DocumentType(Identified, Childless, Node): class
1258 clone = DocumentType(None)
1407 doctype = DocumentType(qualifiedName)
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/
Dtree-construction.txt207 Append a DocumentType node to the Document node, with the name
214 DocumentType objects set to null and empty lists as appropriate.
215 Associate the DocumentType node with the Document object so that
/external/python/cpython2/Misc/
DHISTORY8271 Node supports the normalize() method; NamedNodeMap, DocumentType and