doctype            94 ext/dom/domimplementation.c 	xmlDtd *doctype;
doctype           138 ext/dom/domimplementation.c 	doctype = xmlCreateIntSubset(NULL, localname, pch1, pch2);
doctype           141 ext/dom/domimplementation.c 	if (doctype == NULL) {
doctype           146 ext/dom/domimplementation.c 	DOM_RET_OBJ((xmlNodePtr) doctype, &ret, NULL);
doctype           159 ext/dom/domimplementation.c 	xmlDtdPtr doctype = NULL;
doctype           172 ext/dom/domimplementation.c 		DOM_GET_OBJ(doctype, node, xmlDtdPtr, doctobj);
doctype           173 ext/dom/domimplementation.c 		if (doctype->type == XML_DOCUMENT_TYPE_NODE) {
doctype           177 ext/dom/domimplementation.c 		if (doctype->doc != NULL) {
doctype           215 ext/dom/domimplementation.c 	if (doctype != NULL) {
doctype           216 ext/dom/domimplementation.c 		docp->intSubset = doctype;
doctype           217 ext/dom/domimplementation.c 		doctype->parent = docp;
doctype           218 ext/dom/domimplementation.c 		doctype->doc = docp;
doctype           219 ext/dom/domimplementation.c 		docp->children = (xmlNodePtr) doctype;
doctype           220 ext/dom/domimplementation.c 		docp->last = (xmlNodePtr) doctype;
doctype           226 ext/dom/domimplementation.c 			if (doctype != NULL) {
doctype           228 ext/dom/domimplementation.c 				doctype->parent = NULL;
doctype           229 ext/dom/domimplementation.c 				doctype->doc = NULL;
doctype            62 ext/standard/html.c #define LIMIT_ALL(all, doctype, charset) do { \
doctype            63 ext/standard/html.c 	(all) = (all) && !CHARSET_PARTIAL_SUPPORT((charset)) && ((doctype) != ENT_HTML_DOC_XML1); \
doctype           949 ext/standard/html.c 	int doctype = flags & ENT_HTML_DOC_TYPE_MASK;
doctype           987 ext/standard/html.c 			if (!unicode_cp_is_allowed(code, doctype) ||
doctype           988 ext/standard/html.c 					(doctype == ENT_HTML_DOC_HTML5 && code == 0x0D))
doctype          1001 ext/standard/html.c 				if (doctype == ENT_HTML_DOC_XHTML && ent_len == 4 && start[0] == 'a'
doctype          1076 ext/standard/html.c static entity_table_opt determine_entity_table(int all, int doctype)
doctype          1080 ext/standard/html.c 	assert(!(doctype == ENT_HTML_DOC_XML1 && all));
doctype          1083 ext/standard/html.c 		retval.ms_table = (doctype == ENT_HTML_DOC_HTML5) ?
doctype          1086 ext/standard/html.c 		retval.table = (doctype == ENT_HTML_DOC_HTML401) ?
doctype          1231 ext/standard/html.c 	int doctype = flags & ENT_HTML_DOC_TYPE_MASK;
doctype          1245 ext/standard/html.c 		LIMIT_ALL(all, doctype, charset);
doctype          1247 ext/standard/html.c 	entity_table = determine_entity_table(all, doctype);
doctype          1347 ext/standard/html.c 						if (!unicode_cp_is_allowed(this_char, doctype)) {
doctype          1354 ext/standard/html.c 						if (!unicode_cp_is_allowed(this_char, doctype)) {
doctype          1367 ext/standard/html.c 								!unicode_cp_is_allowed(this_char, doctype)) {
doctype          1398 ext/standard/html.c 						if (!numeric_entity_is_allowed(code_point, doctype))
doctype          1411 ext/standard/html.c 						if (!(doctype == ENT_HTML_DOC_XHTML && ent_len == 4 && start[0] == 'a'
doctype          1631 ext/standard/html.c 	int doctype;
doctype          1648 ext/standard/html.c 	doctype = flags & ENT_HTML_DOC_TYPE_MASK;
doctype          1649 ext/standard/html.c 	LIMIT_ALL(all, doctype, charset);
doctype          1653 ext/standard/html.c 	entity_table = determine_entity_table((int)all, doctype);