HomeSort by relevance Sort by last modified time
    Searched refs:SystemID (Results 1 - 20 of 20) sorted by null

  /external/libxml2/include/libxml/
entities.h 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */
86 const xmlChar *SystemID,
93 const xmlChar *SystemID,
100 const xmlChar *SystemID,
SAX.h 50 const xmlChar *SystemID);
55 const xmlChar *SystemID);
65 const xmlChar *systemId);
72 const xmlChar *systemId,
91 const xmlChar *systemId);
96 const xmlChar *systemId,
SAX2.h 48 const xmlChar *SystemID);
53 const xmlChar *SystemID);
63 const xmlChar *systemId);
70 const xmlChar *systemId,
89 const xmlChar *systemId);
94 const xmlChar *systemId,
parser.h 328 * @systemId: The system ID of the entity
341 const xmlChar *systemId);
347 * @SystemID: the SYSTEM ID (e.g. filename or URL)
354 const xmlChar *SystemID);
360 * @SystemID: the SYSTEM ID (e.g. filename or URL)
367 const xmlChar *SystemID);
396 * @systemId: The system ID of the entity
405 const xmlChar *systemId,
412 * @systemId: The system ID of the entity
419 const xmlChar *systemId);
    [all...]
tree.h 158 const xmlChar *SystemID; /* System identifier, if any */
384 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC DTD */
710 const xmlChar *SystemID);
715 const xmlChar *SystemID);
    [all...]
parserInternals.h 462 const xmlChar *SystemID);
valid.h 158 const xmlChar *SystemID);
  /external/libxml2/
entities.c 114 if ((entity->SystemID != NULL) &&
115 (!xmlDictOwns(dict, entity->SystemID)))
116 xmlFree((char *) entity->SystemID);
129 if (entity->SystemID != NULL)
130 xmlFree((char *) entity->SystemID);
148 const xmlChar *ExternalID, const xmlChar *SystemID,
169 if (SystemID != NULL)
170 ret->SystemID = xmlStrdup(SystemID);
175 if (SystemID != NULL
    [all...]
legacy.c 872 * @SystemID: the SYSTEM ID (e.g. filename or URL)
879 const xmlChar * ExternalID, const xmlChar * SystemID)
882 xmlSAX2InternalSubset(ctx, name, ExternalID, SystemID);
890 * @SystemID: the SYSTEM ID (e.g. filename or URL)
897 const xmlChar * ExternalID, const xmlChar * SystemID)
900 xmlSAX2ExternalSubset(ctx, name, ExternalID, SystemID);
907 * @systemId: The system ID of the entity
920 const xmlChar * systemId)
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId));
967 * @systemId: The system ID of the entit
    [all...]
xmlcatalog.c 294 printf("\tsystem SystemID: make a SYSTEM identifier lookup\n");
295 printf("\tresolve PublicID SystemID: do a full resolver lookup\n");
HTMLtree.c 641 if (cur->SystemID != NULL) {
643 xmlBufferWriteQuotedString(buf->buffer, cur->SystemID);
645 } else if (cur->SystemID != NULL) {
647 xmlBufferWriteQuotedString(buf->buffer, cur->SystemID);
xinclude.c     [all...]
SAX2.c 331 * @SystemID: the SYSTEM ID (e.g. filename or URL)
337 const xmlChar *ExternalID, const xmlChar *SystemID)
345 name, ExternalID, SystemID);
359 xmlCreateIntSubset(ctxt->myDoc, name, ExternalID, SystemID);
369 * @SystemID: the SYSTEM ID (e.g. filename or URL)
375 const xmlChar *ExternalID, const xmlChar *SystemID)
382 name, ExternalID, SystemID);
384 if (((ExternalID != NULL) || (SystemID != NULL)) &&
403 SystemID);
408 xmlNewDtd(ctxt->myDoc, name, ExternalID, SystemID);
    [all...]
valid.c     [all...]
debugXML.c 466 if (dtd->SystemID != NULL)
467 fprintf(ctxt->output, ", SYSTEM %s", (char *) dtd->SystemID);
690 if (ent->SystemID) {
692 fprintf(ctxt->output, " SystemID=%s\n",
693 (char *) ent->SystemID);
795 if (ent->SystemID) {
797 fprintf(ctxt->output, "SystemID=%s\n", (char *) ent->SystemID);
    [all...]
xmlsave.c 43 * @systemID: the system identifier
51 xmlIsXHTML(const xmlChar *systemID, const xmlChar *publicID) {
52 if ((systemID == NULL) && (publicID == NULL))
59 if (systemID != NULL) {
60 if (xmlStrEqual(systemID, XHTML_STRICT_SYSTEM_ID)) return(1);
61 if (xmlStrEqual(systemID, XHTML_FRAME_SYSTEM_ID)) return(1);
62 if (xmlStrEqual(systemID, XHTML_TRANS_SYSTEM_ID)) return(1);
568 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID);
569 } else if (dtd->SystemID != NULL) {
571 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID);
    [all...]