Home
last modified time | relevance | path

Searched refs:elt (Results 1 – 6 of 6) sorted by relevance

/php-src/ext/dom/tests/modern/spec/
H A Dattribute_entity_expansion.phpt8 $elt = $doc->createElement('elt');
9 $doc->appendChild($elt);
10 $elt->setAttribute('a','&');
11 print $doc->saveHTML($elt) . "\n";
39 <elt a="&amp;"></elt>
41 <elt a="&amp;amp;"></elt>
42 <elt a=""></elt>
44 <elt a="&amp;"></elt>
46 <elt a="&amp;amp;"></elt>
47 <elt svg:id="&amp;amp;"></elt>
[all …]
H A Dattribute_entity_expansion_legacy.phpt8 $elt = $doc->createElement('elt');
9 $doc->appendChild($elt);
10 $elt->setAttribute('a','&');
11 print $doc->saveXML($elt) . "\n";
16 print $doc->saveXML($elt) . "\n";
19 print $doc->saveXML($elt) . "\n";
39 <elt a="&amp;"/>
41 <elt a="&amp;"/>
42 <elt a=""/>
46 <elt a=""/>
[all …]
/php-src/ext/xml/tests/
H A Dbug30875.phpt12 <elt att="&ref;">a&ref;</elt>
/php-src/sapi/fpm/fpm/
H A Dfpm_events.c164 struct fpm_event_queue_s *elt; in fpm_event_queue_add() local
174 if (!(elt = malloc(sizeof(struct fpm_event_queue_s)))) { in fpm_event_queue_add()
178 elt->prev = NULL; in fpm_event_queue_add()
179 elt->next = NULL; in fpm_event_queue_add()
180 elt->ev = ev; in fpm_event_queue_add()
183 (*queue)->prev = elt; in fpm_event_queue_add()
184 elt->next = *queue; in fpm_event_queue_add()
186 *queue = elt; in fpm_event_queue_add()
/php-src/ext/spl/tests/
H A Dgh8366.phpt6 foreach ($it as $elt) {}
/php-src/ext/hash/
H A Dhash.c285 zval *elt; in php_hash_unserialize_spec() local
298 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
299 if (!elt || Z_TYPE_P(elt) != IS_STRING || Z_STRLEN_P(elt) != count) { in php_hash_unserialize_spec()
303 memcpy(buf + pos, Z_STRVAL_P(elt), count); in php_hash_unserialize_spec()
308 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
309 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
313 val = (uint32_t) Z_LVAL_P(elt); in php_hash_unserialize_spec()
315 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
316 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
320 val += ((uint64_t) Z_LVAL_P(elt)) << 32; in php_hash_unserialize_spec()

Completed in 15 milliseconds