Home | History | Annotate | Download | only in libxml2

Lines Matching refs:dtd

466  *  DTD:       1 means that this element is valid only in the Loose DTD
467 * 2 means that this element is valid only in the Frameset DTD
469 * Name,Start Tag,End Tag,Save End,Empty,Deprecated,DTD,inline,Description
970 * TODO: extend that list by reading the HTML SGML DTD on
1149 * The HTML DTD allows an ending tag to implicitly close other tags.
1213 * The HTML DTD allows a tag to implicitly close other tags.
1249 * The HTML DTD allows a tag to implicitly close other tags.
1276 * The HTML DTD allows a tag to implicitly close other tags.
1300 * The HTML DTD allows a tag to exists only implicitly
2026 * all tags allowing pc data from the html 4.01 loose dtd
2055 xmlDtdPtr dtd;
2071 dtd = xmlGetIntSubset(ctxt->myDoc);
2072 if (dtd != NULL && dtd->ExternalID != NULL) {
2073 if (!xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4.01//EN") ||
2074 !xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4//EN"))
2109 * @URI: URI for the dtd, or NULL
2110 * @ExternalID: the external ID of the DTD, or NULL
2112 * Creates a new HTML document without a DTD node if @URI and @ExternalID
2115 * Returns a new document, do not initialize the DTD if not provided
2155 * @URI: URI for the dtd, or NULL
2156 * @ExternalID: the external ID of the DTD, or NULL
2166 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd",
2167 BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN"));
2665 * http://www.w3.org/TR/html4/sgml/dtd.html#Script
2666 * http://www.w3.org/TR/html4/sgml/dtd.html#StyleSheet
2671 * Script data ( %Script; in the DTD) can be the content of the SCRIPT
4071 * Check for an Empty Element from DTD definition
4125 xmlDtdPtr dtd;
4229 dtd = xmlGetIntSubset(ctxt->myDoc);
4230 if (dtd == NULL)
4233 BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN",
4234 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd");
4660 "HPP: try DTD\n");break;
4994 * Check for an Empty Element from DTD definition
5202 "HPP: internal error, state == DTD\n",
5252 "HPP: entering DTD\n");
5317 xmlDtdPtr dtd;
5318 dtd = xmlGetIntSubset(ctxt->myDoc);
5319 if (dtd == NULL)
5322 BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN",
5323 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd");
5747 return ( elt->dtd == 0 ) ? HTML_VALID : HTML_DEPRECATED ;