/third_party/python/Lib/xml/sax/ |
D | expatreader.py | 397 def start_doctype_decl(self, name, sysid, pubid, has_internal_subset): argument 398 self._lex_handler_prop.startDTD(name, pubid, sysid) 400 def unparsed_entity_decl(self, name, base, sysid, pubid, notation_name): argument 401 self._dtd_handler.unparsedEntityDecl(name, pubid, sysid, notation_name) 403 def notation_decl(self, name, base, sysid, pubid): argument 404 self._dtd_handler.notationDecl(name, pubid, sysid) 406 def external_entity_ref(self, context, base, sysid, pubid): argument 410 source = self._ent_handler.resolveEntity(pubid, sysid)
|
/third_party/python/Lib/xml/etree/ |
D | ElementTree.py | 1697 name, type, pubid, system = self._doctype 1698 if pubid: 1699 pubid = pubid[1:-1] 1702 pubid = None 1706 self.target.doctype(name, pubid, system[1:-1])
|
/third_party/python/Modules/expat/ |
D | expat.h | 317 const XML_Char *pubid,
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
D | expat.h | 318 const XML_Char *pubid,
|
/third_party/skia/third_party/externals/expat/expat/xmlwf/ |
D | xmlwf.c | 686 const XML_Char *sysid, const XML_Char *pubid, in metaStartDoctypeDecl() argument 692 UNUSED_P(pubid); in metaStartDoctypeDecl()
|
/third_party/python/Modules/ |
D | pyexpat.c | 676 const XML_Char *sysid, const XML_Char *pubid, 679 string_intern(self, sysid), string_intern(self, pubid),
|
D | _elementtree.c | 3498 const XML_Char *pubid, in expat_start_doctype_handler() argument 3523 if (pubid) { in expat_start_doctype_handler() 3524 pubid_obj = makeuniversal(self, pubid); in expat_start_doctype_handler()
|
/third_party/python/Lib/test/ |
D | test_pyexpat.py | 121 name, base, sysid, pubid = args
|
D | test_xml_etree.py | 3350 def doctype(self, name, pubid, system): argument 3351 self._doctype = (name, pubid, system) 3441 def doctype(self, name, pubid, system): argument 3443 _doctype2 = (name, pubid, system)
|
/third_party/skia/third_party/externals/expat/expat/tests/ |
D | runtests.c | 215 const XML_Char *sysid, const XML_Char *pubid, in dummy_start_doctype_handler() argument 220 UNUSED_P(pubid); in dummy_start_doctype_handler() 379 const XML_Char *sysid, const XML_Char *pubid, in dummy_start_doctype_decl_handler() argument 384 UNUSED_P(pubid); in dummy_start_doctype_decl_handler()
|
/third_party/python/Doc/library/ |
D | xml.etree.elementtree.rst | 1307 .. method:: doctype(name, pubid, system) 1309 Handles a doctype declaration. *name* is the doctype name. *pubid* is
|
/third_party/skia/third_party/externals/expat/expat/ |
D | Changes | 966 sysid, pubid, has_internal_subset
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 77205 - * xmlwriter.c: Insert space between pubid and sysid when both
|