Home
last modified time | relevance | path

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

/external/libxml2/include/libxml/
Dxmlwriter.h304 const xmlChar * pubid,
314 const xmlChar * pubid,
321 const xmlChar * pubid,
328 const xmlChar * pubid,
433 const xmlChar * pubid,
439 const xmlChar * pubid,
447 pubid,
461 const xmlChar * pubid,
/external/python/cpython2/Lib/xml/sax/
Dexpatreader.py381 def start_doctype_decl(self, name, sysid, pubid, has_internal_subset): argument
382 self._lex_handler_prop.startDTD(name, pubid, sysid)
384 def unparsed_entity_decl(self, name, base, sysid, pubid, notation_name): argument
385 self._dtd_handler.unparsedEntityDecl(name, pubid, sysid, notation_name)
387 def notation_decl(self, name, base, sysid, pubid): argument
388 self._dtd_handler.notationDecl(name, pubid, sysid)
390 def external_entity_ref(self, context, base, sysid, pubid): argument
394 source = self._ent_handler.resolveEntity(pubid, sysid)
/external/libxml2/
Dxmlwriter.c2831 const xmlChar * pubid, const xmlChar * sysid) in xmlTextWriterStartDTD() argument
2877 if (pubid != 0) { in xmlTextWriterStartDTD()
2903 xmlOutputBufferWriteString(writer->out, (const char *) pubid); in xmlTextWriterStartDTD()
2915 if (pubid == 0) { in xmlTextWriterStartDTD()
3050 const xmlChar * pubid, in xmlTextWriterWriteFormatDTD() argument
3058 rc = xmlTextWriterWriteVFormatDTD(writer, name, pubid, sysid, format, in xmlTextWriterWriteFormatDTD()
3081 const xmlChar * pubid, in xmlTextWriterWriteVFormatDTD() argument
3095 rc = xmlTextWriterWriteDTD(writer, name, pubid, sysid, buf); in xmlTextWriterWriteVFormatDTD()
3116 const xmlChar * pubid, in xmlTextWriterWriteDTD() argument
3123 count = xmlTextWriterStartDTD(writer, name, pubid, sysid); in xmlTextWriterWriteDTD()
[all …]
Dtestapi.c44276 xmlChar * pubid; /* the public identifier, which is an alternative to the system identifier */ in test_xmlTextWriterStartDTD() local
44288 pubid = gen_const_xmlChar_ptr(n_pubid, 2); in test_xmlTextWriterStartDTD()
44291 …ret_val = xmlTextWriterStartDTD(writer, (const xmlChar *)name, (const xmlChar *)pubid, (const xmlC… in test_xmlTextWriterStartDTD()
44296 des_const_xmlChar_ptr(n_pubid, (const xmlChar *)pubid, 2); in test_xmlTextWriterStartDTD()
44967 xmlChar * pubid; /* the public identifier, which is an alternative to the system identifier */ in test_xmlTextWriterWriteDTD() local
44982 pubid = gen_const_xmlChar_ptr(n_pubid, 2); in test_xmlTextWriterWriteDTD()
44986 …ret_val = xmlTextWriterWriteDTD(writer, (const xmlChar *)name, (const xmlChar *)pubid, (const xmlC… in test_xmlTextWriterWriteDTD()
44991 des_const_xmlChar_ptr(n_pubid, (const xmlChar *)pubid, 2); in test_xmlTextWriterWriteDTD()
45127 xmlChar * pubid; /* the public identifier, which is an alternative to the system identifier */ in test_xmlTextWriterWriteDTDEntity() local
45147 pubid = gen_const_xmlChar_ptr(n_pubid, 3); in test_xmlTextWriterWriteDTDEntity()
[all …]
DChangeLog2610 * xmlwriter.c: Insert space between pubid and sysid when both
/external/python/cpython2/Lib/
Dxmllib.py450 pubid, syslit = res.group('pubid', 'syslit')
451 if pubid is not None:
452 pubid = pubid[1:-1] # remove quotes
453 pubid = ' '.join(pubid.split()) # normalize
474 self.handle_doctype(name, pubid, syslit, rawdata[j+1:k])
488 self.handle_doctype(name, pubid, syslit, None)
743 def handle_doctype(self, tag, pubid, syslit, data): argument
815 def handle_doctype(self, tag, pubid, syslit, data): argument
/external/python/cpython2/Lib/xml/etree/
DElementTree.py1610 name, type, pubid, system = self._doctype
1613 pubid = None
1616 if pubid:
1617 pubid = pubid[1:-1]
1619 self.target.doctype(name, pubid, system[1:-1])
1622 self._XMLParser__doctype(name, pubid, system[1:-1])
1623 self.doctype(name, pubid, system[1:-1])
1633 def doctype(self, name, pubid, system): argument
/external/libxml2/os400/libxmlrpg/
Dxmlwriter.rpgle513 d pubid * value options(*string) const xmlChar *
529 d pubid * value options(*string) const xmlChar *
547 d pubid * value options(*string) const xmlChar *
557 d pubid * value options(*string) const xmlChar *
570 d pubid * value options(*string) const xmlChar *
736 d pubid * value options(*string) const xmlChar *
745 d pubid * value options(*string) const xmlChar *
756 d pubid * value options(*string) const xmlChar *
769 d pubid * value options(*string) const xmlChar *
/external/python/cpython2/Modules/expat/
Dexpat.h302 const XML_Char *pubid,
/external/expat/lib/
Dexpat.h302 const XML_Char *pubid,
/external/python/cpython2/Doc/library/
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)
Dxmllib.rst113 .. method:: handle_doctype(tag, pubid, syslit, data)
/external/python/cpython2/Lib/test/
Dtest_pyexpat.py114 name, base, sysid, pubid = args
/external/python/cpython2/Modules/
Dpyexpat.c863 const XML_Char *sysid, const XML_Char *pubid,
866 string_intern(self, sysid), string_intern(self, pubid),
/external/expat/
DChanges263 sysid, pubid, has_internal_subset
/external/expat/tests/
Druntests.c121 const XML_Char *UNUSED_P(pubid), in dummy_start_doctype_handler() argument