Lines Matching refs:dtd
707 xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) { in xmlDtdDumpOutput() argument
712 if (dtd == NULL) return; in xmlDtdDumpOutput()
717 xmlOutputBufferWriteString(buf, (const char *)dtd->name); in xmlDtdDumpOutput()
718 if (dtd->ExternalID != NULL) { in xmlDtdDumpOutput()
720 xmlBufWriteQuotedString(buf->buffer, dtd->ExternalID); in xmlDtdDumpOutput()
722 xmlBufWriteQuotedString(buf->buffer, dtd->SystemID); in xmlDtdDumpOutput()
723 } else if (dtd->SystemID != NULL) { in xmlDtdDumpOutput()
725 xmlBufWriteQuotedString(buf->buffer, dtd->SystemID); in xmlDtdDumpOutput()
727 if ((dtd->entities == NULL) && (dtd->elements == NULL) && in xmlDtdDumpOutput()
728 (dtd->attributes == NULL) && (dtd->notations == NULL) && in xmlDtdDumpOutput()
729 (dtd->pentities == NULL)) { in xmlDtdDumpOutput()
738 if ((dtd->notations != NULL) && ((dtd->doc == NULL) || in xmlDtdDumpOutput()
739 (dtd->doc->intSubset == dtd))) { in xmlDtdDumpOutput()
741 (xmlNotationTablePtr) dtd->notations); in xmlDtdDumpOutput()
748 ctxt->doc = dtd->doc; in xmlDtdDumpOutput()
749 xmlNodeListDumpOutput(ctxt, dtd->children); in xmlDtdDumpOutput()
1104 xmlDtdPtr dtd; in xmlDocContentDumpOutput() local
1214 dtd = xmlGetIntSubset(cur); in xmlDocContentDumpOutput()
1215 if (dtd != NULL) { in xmlDocContentDumpOutput()
1216 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID); in xmlDocContentDumpOutput()
2351 xmlDtdPtr dtd; in xmlNodeDumpOutput() local
2372 dtd = xmlGetIntSubset(doc); in xmlNodeDumpOutput()
2373 if (dtd != NULL) { in xmlNodeDumpOutput()
2374 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID); in xmlNodeDumpOutput()