Home
last modified time | relevance | path

Searched refs:doctype (Results 1 – 25 of 45) sorted by relevance

12

/external/python/cpython2/Lib/xml/dom/
Dexpatbuilder.py234 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 …]
Dminidom.py1361 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/
D758606.html.err3 <!-- <!doctype
6 <!-- <!doctype
9 <!-- <!doctype
/external/python/cpython2/Lib/test/
Dtest_minidom.py29 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/
DXSLOutputAttributes.java139 public void setDoctypePublic(String doctype); in setDoctypePublic() argument
144 public void setDoctypeSystem(String doctype); in setDoctypeSystem() argument
DToUnknownStream.java639 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/
Dxmltest.cpp865 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/
Dhello.txt2 :doctype: manpage
Dsyslinux-cli.txt2 :doctype: manpage
Disolinux.txt2 :doctype: manpage
/external/syslinux/doc/
Dcptime.txt2 :doctype: manpage
Dpxechn.txt2 :doctype: manpage
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMHelper.java1132 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/
DElementTree.py1619 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/
Dwpa_passphrase.sgml1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
Dwpa_gui.sgml1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
Dwpa_background.sgml1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
Dwpa_priv.sgml1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
/external/iproute2/doc/
Drtstat.sgml1 <!doctype linuxdoc system>
Dnstat.sgml1 <!doctype linuxdoc system>
/external/testng/doc/
Dtestng.css45 .doctype {
/external/tagsoup/
DREADME52 + --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/
DDOM2DTM.java1422 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/
Dhtmlparser.rst213 This method is called to handle an HTML doctype declaration (e.g.
285 Parsing a doctype::
Dxml.etree.elementtree.rst951 .. 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

12