/PHP-8.3/ext/gd/libgd/ |
H A D | gdcache.c | 63 gdCache_head_t *head; in gdCacheCreate() local 66 head->mru = NULL; in gdCacheCreate() 67 head->size = size; in gdCacheCreate() 71 return head; in gdCacheCreate() 79 elem = head->mru; in gdCacheDelete() 97 elem = head->mru; in gdCacheGet() 107 head->mru = elem; in gdCacheGet() 116 userdata = (*(head->gdCacheFetch)) (&(head->error), keydata); in gdCacheGet() 122 if (i < head->size) in gdCacheGet() 134 elem->next = head->mru; in gdCacheGet() [all …]
|
/PHP-8.3/ext/dba/libcdb/ |
H A D | cdb_make.c | 59 c->head = 0; in cdb_make_start() 78 head = c->head; in cdb_make_addend() 79 if (!head || (head->num >= CDB_HPLIST)) { in cdb_make_addend() 81 if (!head) in cdb_make_addend() 83 head->num = 0; in cdb_make_addend() 84 head->next = c->head; in cdb_make_addend() 85 c->head = head; in cdb_make_addend() 87 head->hp[head->num].h = h; in cdb_make_addend() 88 head->hp[head->num].p = c->pos; in cdb_make_addend() 89 ++head->num; in cdb_make_addend() [all …]
|
/PHP-8.3/ext/dom/tests/ |
H A D | DOMDocument_saveHTML_variant1.phpt | 10 $head = $doc->createElement('head'); 11 $head = $root->appendChild($head); 13 $title = $head->appendChild($title); 20 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTML_basic.phpt | 13 $head = $doc->createElement('head'); 14 $head = $root->appendChild($head); 16 $title = $head->appendChild($title); 22 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTMLFile_formatOutput_gte_2_13.phpt | 19 $head = $doc->createElement('head'); 20 $head = $root->appendChild($head); 22 $title = $head->appendChild($title); 32 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTML_basic_gte_2_13.phpt | 18 $head = $doc->createElement('head'); 19 $head = $root->appendChild($head); 21 $title = $head->appendChild($title); 31 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTMLFile_basic.phpt | 18 $head = $doc->createElement('head'); 19 $head = $root->appendChild($head); 21 $title = $head->appendChild($title); 31 <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>This is the t…
|
H A D | DOMDocument_saveHTMLFile_formatOutput.phpt | 19 $head = $doc->createElement('head'); 20 $head = $root->appendChild($head); 22 $title = $head->appendChild($title); 32 <html><head> 35 </head></html>
|
H A D | DOMDocument_saveHTMLFile_invalid_filename.phpt | 14 $head = $doc->createElement('head'); 15 $head = $root->appendChild($head); 17 $title = $head->appendChild($title);
|
H A D | bug69679.phpt | 8 $html = "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></bod… 14 <html><head><meta charset="UTF-8"></head><body>U+0000 <span></span></body></html>
|
H A D | bug35673.phpt | 7 $html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 8 <title>This is the title</title></head></html>'; 17 <html><head> 20 </head></html>
|
H A D | DOMNode_contains.phpt | 12 <head> 14 </head> 27 $head = $xpath->query("//head")[0]; 42 var_dump($dom->documentElement->contains($head)); 59 var_dump($main->contains($head)); 61 var_dump($main->contains($head->firstElementChild));
|
H A D | dom005.phpt | 24 <html><head><title>Hello world</title></head><body> 30 <html><head><title>Hello world</title></head><body>
|
H A D | DOMNode_DOMNameSpaceNode_isConnected.phpt | 9 $dom->loadXML('<!DOCTYPE html><html><head/><body/></html>'); 12 $head = $docElement->firstChild; 13 $body = $head->nextSibling; 35 var_dump($head->isConnected);
|
/PHP-8.3/ext/tidy/tests/ |
H A D | 010.phpt | 11 var_dump($a->head()); 18 <head> 20 </head> 44 <head> 46 </head> 71 </head> 175 <head> 177 </head> 202 </head> 278 </head> [all …]
|
H A D | 002.phpt | 13 <head> 15 </head>
|
H A D | 005-mb.phpt | 13 <head> 15 </head>
|
H A D | 005.phpt | 13 <head> 15 </head>
|
H A D | 009.phpt | 14 <head> 16 </head>
|
H A D | 003.phpt | 16 <head> 18 </head>
|
/PHP-8.3/Zend/ |
H A D | zend_llist.c | 26 l->head = NULL; in zend_llist_init() 43 l->head = tmp; in zend_llist_add_element() 56 tmp->next = l->head; in zend_llist_prepend_element() 58 if (l->head) { in zend_llist_prepend_element() 59 l->head->prev = tmp; in zend_llist_prepend_element() 63 l->head = tmp; in zend_llist_prepend_element() 115 l->head = NULL; in zend_llist_destroy() 138 l->head = NULL; in zend_llist_remove_tail() 156 ptr = src->head; in zend_llist_copy() 168 element=l->head; in zend_llist_apply_with_del() [all …]
|
/PHP-8.3/main/streams/ |
H A D | filter.c | 165 if (brigade->head) { in php_stream_bucket_prepend() 170 brigade->head = bucket; in php_stream_bucket_prepend() 186 brigade->head = bucket; in php_stream_bucket_append() 290 if (chain->head) { in php_stream_filter_prepend_ex() 295 chain->head = filter; in php_stream_filter_prepend_ex() 315 chain->head = filter; in php_stream_filter_append_ex() 339 while (brig_in.head) { in php_stream_filter_append_ex() 340 bucket = brig_in.head; in php_stream_filter_append_ex() 344 while (brig_out.head) { in php_stream_filter_append_ex() 389 chain->head = NULL; in _php_stream_filter_append() [all …]
|
/PHP-8.3/ext/spl/ |
H A D | spl_dllist.c | 109 llist->head = NULL; in spl_ptr_llist_init() 172 if (llist->head) { in spl_ptr_llist_unshift() 178 llist->head = elem; in spl_ptr_llist_unshift() 195 llist->head = elem; in spl_ptr_llist_push() 243 spl_ptr_llist_element *head = llist->head; in spl_ptr_llist_first() local 245 if (head == NULL) { in spl_ptr_llist_first() 255 spl_ptr_llist_element *head = llist->head; in spl_ptr_llist_shift() local 257 if (head == NULL) { in spl_ptr_llist_shift() 262 if (head->next) { in spl_ptr_llist_shift() 268 llist->head = head->next; in spl_ptr_llist_shift() [all …]
|
/PHP-8.3/ext/opcache/tests/jit/ |
H A D | bug80861.phpt | 51 public $head = null; 55 $this->head = new Node(); 56 Node::joinLR($this->head, $this->head); 74 Node::joinLR($m->head, $c); 80 Node::joinLR($c, $m->head); 81 $c = $m->head->right;
|
/PHP-8.3/sapi/cli/tests/ |
H A D | php_cli_server_013.phpt | 133 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style> 134 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/</code> was not found o… 142 <!doctype html><html><head><title>404 Not Found</title><style>AAA</style> 143 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/style.css</code> w… 160 <!doctype html><html><head><title>405 Method Not Allowed</title><style>AAA</style> 161 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html> 170 <!doctype html><html><head><title>405 Method Not Allowed</title><style>AAA</style> 171 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html> 180 <!doctype html><html><head><title>405 Method Not Allowed</title><style>AAA</style> 181 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html>
|