Home
last modified time | relevance | path

Searched refs:doctype (Results 1 – 25 of 29) sorted by relevance

12

/PHP-8.1/ext/dom/
H A Ddomimplementation.c53 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 …]
H A Dphp_dom.stub.php207 …ocument(?string $namespace = null, string $qualifiedName = "", ?DOMDocumentType $doctype = null) {} argument
409 public ?DOMDocumentType $doctype; variable in DOMDocument
/PHP-8.1/ext/dom/tests/
H A DDOMDocumentType_basic_001.phpt16 $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 DDOMImplementation_createDocumentType_basic.phpt8 $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 DDOMDocumentType_systemId_basic_001.phpt15 $doctype = $doc->doctype;
16 var_dump($doctype->systemId);
H A DDOMDocumentType_publicId_basic_001.phpt15 $doctype = $doc->doctype;
16 var_dump($doctype->publicId);
H A Dbug79451.phpt2 Bug #79451 (Using DOMDocument->replaceChild on doctype causes double free)
11 $dom->replaceChild($dt, $dom->doctype);
13 var_dump($dom->doctype->name);
H A Dbug67081.phpt10 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 DDOMDocumentType_entities_error_001.phpt10 $doctype = new DOMDocumentType();
12 $doctype->entities;
H A DDOMDocumentType_internalSubset_error_001.phpt10 $doctype = new DOMDocumentType();
12 $doctype->internalSubset;
H A DDOMDocumentType_name_error_001.phpt10 $doctype = new DOMDocumentType();
12 $doctype->name;
H A DDOMDocumentType_notations_error_001.phpt10 $doctype = new DOMDocumentType();
12 $notations = $doctype->notations;
H A DDOMDocumentType_publicId_error_001.phpt10 $doctype = new DOMDocumentType();
12 $publicId = $doctype->publicId;
H A DDOMDocumentType_systemId_error_001.phpt10 $doctype = new DOMDocumentType();
12 $systemId = $doctype->systemId;
H A Dbug78025.phpt10 var_dump($dom->doctype->name);
H A Dbug54601.phpt18 $n = $doc->doctype;
H A Ddomobject_debug_handler.phpt22 ["doctype"]=>
H A DDOMEntity_fields.phpt25 $entities = iterator_to_array($dom->doctype->entities);
H A Ddom007.phpt39 $dtd = $dom->doctype;
/PHP-8.1/ext/standard/
H A Dhtml.c56 #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.1/sapi/cli/tests/
H A Dphp_cli_server_013.phpt79 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
88 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
97 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
H A Dphp_cli_server_014.phpt71 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style>
/PHP-8.1/ext/standard/tests/strings/
H A Dbug23650.phpt7 2:<!doctype -- >
/PHP-8.1/ext/tidy/tests/
H A D031.phpt10 $config = array('doctype' => 'php');
H A D024.phpt18 'doctype' => 'omit',

Completed in 36 milliseconds

12