Home
last modified time | relevance | path

Searched refs:pubid (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/xml/sax/
Dexpatreader.py397 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/
DElementTree.py1697 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/
Dexpat.h317 const XML_Char *pubid,
/third_party/skia/third_party/externals/expat/expat/lib/
Dexpat.h318 const XML_Char *pubid,
/third_party/skia/third_party/externals/expat/expat/xmlwf/
Dxmlwf.c686 const XML_Char *sysid, const XML_Char *pubid, in metaStartDoctypeDecl() argument
692 UNUSED_P(pubid); in metaStartDoctypeDecl()
/third_party/python/Modules/
Dpyexpat.c676 const XML_Char *sysid, const XML_Char *pubid,
679 string_intern(self, sysid), string_intern(self, pubid),
D_elementtree.c3498 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/
Dtest_pyexpat.py121 name, base, sysid, pubid = args
Dtest_xml_etree.py3350 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/
Druntests.c215 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/
Dxml.etree.elementtree.rst1307 .. 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/
DChanges966 sysid, pubid, has_internal_subset
/third_party/chromium/patch/
D0001-cve.patch77205 - * xmlwriter.c: Insert space between pubid and sysid when both