Home
last modified time | relevance | path

Searched refs:system_id (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/xml/sax/
Dxmlreader.py203 def __init__(self, system_id = None): argument
204 self.__system_id = system_id
218 def setSystemId(self, system_id): argument
220 self.__system_id = system_id
/external/python/cpython3/Lib/xml/sax/
Dxmlreader.py205 def __init__(self, system_id = None): argument
206 self.__system_id = system_id
220 def setSystemId(self, system_id): argument
222 self.__system_id = system_id
/external/kernel-headers/original/uapi/linux/
Diso_fs.h34 char system_id [ISODCL ( 9, 40)]; /* achars */ member
71 char system_id [ISODCL ( 9, 40)]; /* achars */ member
120 char system_id [ISODCL ( 17, 48)]; /* achars */ member
Dmsdos_fs.h110 __u8 system_id[8]; /* Name - can be used to special case member
/external/ImageMagick/coders/
Dsvg.c492 const xmlChar *external_id,const xmlChar *system_id) in SVGInternalSubset() argument
503 (system_id != (const xmlChar *) NULL ? (const char *) system_id : "none")); in SVGInternalSubset()
505 (void) xmlCreateIntSubset(svg_info->document,name,external_id,system_id); in SVGInternalSubset()
509 const xmlChar *public_id,const xmlChar *system_id) in SVGResolveEntity() argument
526 (system_id != (const xmlChar *) NULL ? (const char *) system_id : "none")); in SVGResolveEntity()
528 stream=xmlLoadExternalEntity((const char *) system_id,(const char *) in SVGResolveEntity()
562 const xmlChar *public_id,const xmlChar *system_id,xmlChar *content) in SVGEntityDeclaration() argument
573 system_id != (xmlChar *) NULL ? (const char *) system_id : "none",content); in SVGEntityDeclaration()
576 (void) xmlAddDocEntity(svg_info->document,name,type,public_id,system_id, in SVGEntityDeclaration()
580 (void) xmlAddDtdEntity(svg_info->document,name,type,public_id,system_id, in SVGEntityDeclaration()
[all …]
Dmsl.c290 const xmlChar *external_id,const xmlChar *system_id) in MSLInternalSubset() argument
301 (system_id != (const xmlChar *) NULL ? (const char *) system_id : " ")); in MSLInternalSubset()
303 (void) xmlCreateIntSubset(msl_info->document,name,external_id,system_id); in MSLInternalSubset()
307 const xmlChar *public_id,const xmlChar *system_id) in MSLResolveEntity() argument
324 (system_id != (const xmlChar *) NULL ? (const char *) system_id : "none")); in MSLResolveEntity()
326 stream=xmlLoadExternalEntity((const char *) system_id,(const char *) in MSLResolveEntity()
360 const xmlChar *public_id,const xmlChar *system_id,xmlChar *content) in MSLEntityDeclaration() argument
371 system_id != (const xmlChar *) NULL ? (const char *) system_id : "none", in MSLEntityDeclaration()
375 (void) xmlAddDocEntity(msl_info->document,name,type,public_id,system_id, in MSLEntityDeclaration()
379 (void) xmlAddDtdEntity(msl_info->document,name,type,public_id,system_id, in MSLEntityDeclaration()
[all …]
/external/python/cpython3/Lib/test/
Dtest_pyexpat.py691 def resolve_entity(context, base, system_id, public_id): argument
692 handler_call_args.append((public_id, system_id))
719 def resolve_entity(context, base, system_id, public_id): argument
720 handler_call_args.append((public_id, system_id))
/external/python/cpython2/Lib/test/
Dtest_pyexpat.py628 def resolve_entity(context, base, system_id, public_id): argument
629 handler_call_args.append((public_id, system_id))
656 def resolve_entity(context, base, system_id, public_id): argument
657 handler_call_args.append((public_id, system_id))
/external/u-boot/include/
Dfat.h93 char system_id[8]; /* Name of fs */ member
/external/e2fsprogs/lib/blkid/
Dprobe.h398 unsigned char system_id[32]; member
/external/python/cpython3/Doc/library/
Dxml.sax.reader.rst54 .. class:: InputSource(system_id=None)
/external/expat/tests/
Druntests.c391 const XML_Char *system_id; member
406 if (!xcstrcmp(systemId, options->system_id)) { in external_entity_optioner()