/external/python/cpython2/Lib/xml/dom/ |
D | expatbuilder.py | 234 if self.document.doctype: 238 self.document.doctype.internalSubset = subset 242 doctype = self.document.implementation.createDocumentType( 244 doctype.ownerDocument = self.document 245 _append_child(self.document, doctype) 246 self.document.doctype = doctype 247 if self._filter and self._filter.acceptNode(doctype) == FILTER_REJECT: 248 self.document.doctype = None 250 doctype = None 254 if doctype is not None: [all …]
|
D | minidom.py | 1361 def createDocument(self, namespaceURI, qualifiedName, doctype): argument 1362 if doctype and doctype.parentNode is not None: 1369 and doctype is None) 1395 if doctype: 1396 doc.appendChild(doctype) 1399 if doctype: 1400 doctype.parentNode = doctype.ownerDocument = doc 1402 doc.doctype = doctype 1407 doctype = DocumentType(qualifiedName) 1408 doctype.publicId = publicId [all …]
|
/external/libxml2/result/HTML/ |
D | 758606.html.err | 3 <!--<!doctype 6 <!--<!doctype 9 <!--<!doctype
|
/external/python/cpython2/Lib/test/ |
D | test_minidom.py | 29 def create_doc_without_doctype(doctype=None): argument 30 return getDOMImplementation().createDocument(None, "doc", doctype) 33 doctype = getDOMImplementation().createDocumentType("doc", None, None) 34 doctype.entities._seq = [] 35 doctype.notations._seq = [] 38 doctype.notations._seq.append(notation) 45 doctype.entities._seq.append(entity) 46 return doctype 49 doctype = create_nonempty_doctype() 50 doc = create_doc_without_doctype(doctype) [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | XSLOutputAttributes.java | 139 public void setDoctypePublic(String doctype); in setDoctypePublic() argument 144 public void setDoctypeSystem(String doctype); in setDoctypeSystem() argument
|
D | ToUnknownStream.java | 639 public void setDoctypePublic(String doctype) in setDoctypePublic() argument 641 m_handler.setDoctypePublic(doctype); in setDoctypePublic() 651 public void setDoctypeSystem(String doctype) in setDoctypeSystem() argument 653 m_handler.setDoctypeSystem(doctype); in setDoctypeSystem()
|
/external/tinyxml/ |
D | xmltest.cpp | 865 const char* doctype = in main() local 873 doc.Parse( doctype ); in main() 892 const char* doctype = in main() local 895 doc.Parse( doctype ); in main() 953 const char* doctype = "<element attr='red' attr='blue' />"; in main() local 956 doc.Parse( doctype ); in main() 964 const char* doctype = "<element att\0r='red' attr='blue' />"; in main() local 967 doc.Parse( doctype ); in main() 971 istringstream strm( doctype ); in main()
|
/external/syslinux/txt/ |
D | hello.txt | 2 :doctype: manpage
|
D | syslinux-cli.txt | 2 :doctype: manpage
|
D | isolinux.txt | 2 :doctype: manpage
|
/external/syslinux/doc/ |
D | cptime.txt | 2 :doctype: manpage
|
D | pxechn.txt | 2 :doctype: manpage
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | DOMHelper.java | 1132 DocumentType doctype = doc.getDoctype(); in getUnparsedEntityURI() local 1134 if (null != doctype) in getUnparsedEntityURI() 1136 NamedNodeMap entities = doctype.getEntities(); in getUnparsedEntityURI()
|
/external/python/cpython2/Lib/xml/etree/ |
D | ElementTree.py | 1619 self.target.doctype(name, pubid, system[1:-1]) 1620 elif self.doctype is not self._XMLParser__doctype: 1623 self.doctype(name, pubid, system[1:-1]) 1633 def doctype(self, name, pubid, system): member in XMLParser 1642 __doctype = doctype
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_passphrase.sgml | 1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
|
D | wpa_gui.sgml | 1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
|
D | wpa_background.sgml | 1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
|
D | wpa_priv.sgml | 1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
|
/external/iproute2/doc/ |
D | rtstat.sgml | 1 <!doctype linuxdoc system>
|
D | nstat.sgml | 1 <!doctype linuxdoc system>
|
/external/testng/doc/ |
D | testng.css | 45 .doctype {
|
/external/tagsoup/ |
D | README | 52 + --doctype-system and --doctype-public force a DOCTYPE 172 --doctype-system=systemid 176 --doctype-public=publicid
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
D | DOM2DTM.java | 1422 DocumentType doctype = doc.getDoctype(); in getUnparsedEntityURI() local 1424 if (null != doctype) in getUnparsedEntityURI() 1426 NamedNodeMap entities = doctype.getEntities(); in getUnparsedEntityURI()
|
/external/python/cpython2/Doc/library/ |
D | htmlparser.rst | 213 This method is called to handle an HTML doctype declaration (e.g. 285 Parsing a doctype::
|
D | xml.etree.elementtree.rst | 951 .. method:: doctype(name, pubid, system) 953 Handles a doctype declaration. *name* is the doctype name. *pubid* is 981 .. method:: doctype(name, pubid, system) 984 Define the :meth:`TreeBuilder.doctype` method on a custom TreeBuilder
|