Lines Matching refs:dtd
446 xmlCtxtDumpDtdNode(xmlDebugCtxtPtr ctxt, xmlDtdPtr dtd) in xmlCtxtDumpDtdNode() argument
450 if (dtd == NULL) { in xmlCtxtDumpDtdNode()
456 if (dtd->type != XML_DTD_NODE) { in xmlCtxtDumpDtdNode()
462 if (dtd->name != NULL) in xmlCtxtDumpDtdNode()
463 fprintf(ctxt->output, "DTD(%s)", (char *) dtd->name); in xmlCtxtDumpDtdNode()
466 if (dtd->ExternalID != NULL) in xmlCtxtDumpDtdNode()
467 fprintf(ctxt->output, ", PUBLIC %s", (char *) dtd->ExternalID); in xmlCtxtDumpDtdNode()
468 if (dtd->SystemID != NULL) in xmlCtxtDumpDtdNode()
469 fprintf(ctxt->output, ", SYSTEM %s", (char *) dtd->SystemID); in xmlCtxtDumpDtdNode()
475 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) dtd); in xmlCtxtDumpDtdNode()
1315 xmlCtxtDumpDTD(xmlDebugCtxtPtr ctxt, xmlDtdPtr dtd) in xmlCtxtDumpDTD() argument
1317 if (dtd == NULL) { in xmlCtxtDumpDTD()
1322 xmlCtxtDumpDtdNode(ctxt, dtd); in xmlCtxtDumpDTD()
1323 if (dtd->children == NULL) in xmlCtxtDumpDTD()
1327 xmlCtxtDumpNodeList(ctxt, dtd->children); in xmlCtxtDumpDTD()
1544 xmlDebugDumpDTD(FILE * output, xmlDtdPtr dtd) in xmlDebugDumpDTD() argument
1553 xmlCtxtDumpDTD(&ctxt, dtd); in xmlDebugDumpDTD()
2637 xmlShellValidate(xmlShellCtxtPtr ctxt, char *dtd, in xmlShellValidate() argument
2649 if ((dtd == NULL) || (dtd[0] == 0)) { in xmlShellValidate()
2654 subset = xmlParseDTD(NULL, (xmlChar *) dtd); in xmlShellValidate()