/PHP-8.2/ext/dom/ |
H A D | domimplementation.c | 53 xmlDtd *doctype; in PHP_METHOD() local 105 if (doctype == NULL) { in PHP_METHOD() 122 xmlDtdPtr doctype = NULL; in PHP_METHOD() local 140 if (doctype->doc != NULL) { in PHP_METHOD() 178 if (doctype != NULL) { in PHP_METHOD() 179 docp->intSubset = doctype; in PHP_METHOD() 180 doctype->parent = docp; in PHP_METHOD() 181 doctype->doc = docp; in PHP_METHOD() 189 if (doctype != NULL) { in PHP_METHOD() 191 doctype->parent = NULL; in PHP_METHOD() [all …]
|
/PHP-8.2/ext/dom/tests/ |
H A D | DOMDocumentType_basic_001.phpt | 16 $doctype = $doc->doctype; 17 print "publicId: ".$doctype->publicId."\n"; 18 print "systemId: ".$doctype->systemId."\n"; 19 print "name: ".$doctype->name."\n"; 20 print "internalSubset: ".$doctype->internalSubset."\n"; 34 $doctype = $doc->doctype; 35 $entities = $doctype->entities; 38 $notations = $doctype->notations;
|
H A D | DOMImplementation_createDocumentType_basic.phpt | 8 $doctype = $imp->createDocumentType("html", 11 $doc = $imp->createDocument(null, 'html', $doctype); 14 $doctype = $imp->createDocumentType("html"); 15 $doc = $imp->createDocument(null, 'html', $doctype); 18 $doctype = $imp->createDocumentType("html", "", ""); 19 $doc = $imp->createDocument(null, 'html', $doctype);
|
H A D | DOMDocumentType_systemId_basic_001.phpt | 15 $doctype = $doc->doctype; 16 var_dump($doctype->systemId);
|
H A D | DOMDocumentType_publicId_basic_001.phpt | 15 $doctype = $doc->doctype; 16 var_dump($doctype->publicId);
|
H A D | bug79451.phpt | 2 Bug #79451 (Using DOMDocument->replaceChild on doctype causes double free) 11 $dom->replaceChild($dt, $dom->doctype); 13 var_dump($dom->doctype->name);
|
H A D | bug67081.phpt | 10 var_dump($domDocument->doctype->internalSubset); 15 var_dump($domDocument->doctype->internalSubset); 20 var_dump($domDocument->doctype->internalSubset); 25 var_dump($domDocument->doctype->internalSubset);
|
H A D | DOMDocumentType_entities_error_001.phpt | 10 $doctype = new DOMDocumentType(); 12 $doctype->entities;
|
H A D | DOMDocumentType_internalSubset_error_001.phpt | 10 $doctype = new DOMDocumentType(); 12 $doctype->internalSubset;
|
H A D | DOMDocumentType_name_error_001.phpt | 10 $doctype = new DOMDocumentType(); 12 $doctype->name;
|
H A D | DOMDocumentType_notations_error_001.phpt | 10 $doctype = new DOMDocumentType(); 12 $notations = $doctype->notations;
|
H A D | DOMDocumentType_publicId_error_001.phpt | 10 $doctype = new DOMDocumentType(); 12 $publicId = $doctype->publicId;
|
H A D | DOMDocumentType_systemId_error_001.phpt | 10 $doctype = new DOMDocumentType(); 12 $systemId = $doctype->systemId;
|
H A D | uaf_doctype_iterator.phpt | 2 UAF when removing doctype and iterating over the child nodes 18 $dom->removeChild($dom->doctype);
|
H A D | bug78025.phpt | 10 var_dump($dom->doctype->name);
|
H A D | entity_reference_stale_01.phpt | 20 $dom->removeChild($dom->doctype);
|
H A D | entity_reference_stale_02.phpt | 24 $dom->removeChild($dom->doctype);
|
H A D | bug54601.phpt | 18 $n = $doc->doctype;
|
H A D | domobject_debug_handler.phpt | 23 ["doctype"]=>
|
/PHP-8.2/ext/standard/ |
H A D | html.c | 56 #define LIMIT_ALL(all, doctype, charset) do { \ argument 831 int doctype = flags & ENT_HTML_DOC_TYPE_MASK; in traverse_for_entities() local 869 if (!unicode_cp_is_allowed(code, doctype) || in traverse_for_entities() 870 (doctype == ENT_HTML_DOC_HTML5 && code == 0x0D)) in traverse_for_entities() 962 assert(!(doctype == ENT_HTML_DOC_XML1 && all)); in determine_entity_table() 968 retval.table = (doctype == ENT_HTML_DOC_HTML401) ? in determine_entity_table() 1108 int doctype = flags & ENT_HTML_DOC_TYPE_MASK; in php_escape_html_entities_ex() local 1122 LIMIT_ALL(all, doctype, charset); in php_escape_html_entities_ex() 1472 int doctype; in PHP_FUNCTION() local 1491 doctype = flags & ENT_HTML_DOC_TYPE_MASK; in PHP_FUNCTION() [all …]
|
/PHP-8.2/sapi/cli/tests/ |
H A D | php_cli_server_013.phpt | 133 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style> 142 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style> 160 <!doctype html><html><head><title>405 Method Not Allowed</title><style>AAA</style> 170 <!doctype html><html><head><title>405 Method Not Allowed</title><style>AAA</style> 180 <!doctype html><html><head><title>405 Method Not Allowed</title><style>AAA</style>
|
H A D | php_cli_server_014.phpt | 71 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
|
/PHP-8.2/ext/standard/tests/strings/ |
H A D | bug23650.phpt | 7 2:<!doctype -- >
|
/PHP-8.2/ext/tidy/tests/ |
H A D | 031.phpt | 10 $config = array('doctype' => 'php');
|
H A D | 024.phpt | 18 'doctype' => 'omit',
|