• Home
  • Raw
  • Download

Lines Matching refs:dtd

613 xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) {  in xmlDtdDumpOutput()  argument
618 if (dtd == NULL) return; in xmlDtdDumpOutput()
623 xmlOutputBufferWriteString(buf, (const char *)dtd->name); in xmlDtdDumpOutput()
624 if (dtd->ExternalID != NULL) { in xmlDtdDumpOutput()
626 xmlBufferWriteQuotedString(buf->buffer, dtd->ExternalID); in xmlDtdDumpOutput()
628 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID); in xmlDtdDumpOutput()
629 } else if (dtd->SystemID != NULL) { in xmlDtdDumpOutput()
631 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID); in xmlDtdDumpOutput()
633 if ((dtd->entities == NULL) && (dtd->elements == NULL) && in xmlDtdDumpOutput()
634 (dtd->attributes == NULL) && (dtd->notations == NULL) && in xmlDtdDumpOutput()
635 (dtd->pentities == NULL)) { in xmlDtdDumpOutput()
644 if ((dtd->notations != NULL) && ((dtd->doc == NULL) || in xmlDtdDumpOutput()
645 (dtd->doc->intSubset == dtd))) { in xmlDtdDumpOutput()
646 xmlDumpNotationTable(buf->buffer, (xmlNotationTablePtr) dtd->notations); in xmlDtdDumpOutput()
653 ctxt->doc = dtd->doc; in xmlDtdDumpOutput()
654 xmlNodeListDumpOutput(ctxt, dtd->children); in xmlDtdDumpOutput()
1009 xmlDtdPtr dtd; in xmlDocContentDumpOutput() local
1122 dtd = xmlGetIntSubset(cur); in xmlDocContentDumpOutput()
1123 if (dtd != NULL) { in xmlDocContentDumpOutput()
1124 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID); in xmlDocContentDumpOutput()
2194 xmlDtdPtr dtd; in xmlNodeDumpOutput() local
2215 dtd = xmlGetIntSubset(doc); in xmlNodeDumpOutput()
2216 if (dtd != NULL) { in xmlNodeDumpOutput()
2217 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID); in xmlNodeDumpOutput()