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";
40 <elt a="&amp;"/>
42 <elt a="&amp;"/>
43 <elt a=""/>
45 <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.c163 struct fpm_event_queue_s *elt; in fpm_event_queue_add() local
173 if (!(elt = malloc(sizeof(struct fpm_event_queue_s)))) { in fpm_event_queue_add()
177 elt->prev = NULL; in fpm_event_queue_add()
178 elt->next = NULL; in fpm_event_queue_add()
179 elt->ev = ev; in fpm_event_queue_add()
182 (*queue)->prev = elt; in fpm_event_queue_add()
183 elt->next = *queue; in fpm_event_queue_add()
185 *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.c284 zval *elt; in php_hash_unserialize_spec() local
297 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
298 if (!elt || Z_TYPE_P(elt) != IS_STRING || Z_STRLEN_P(elt) != count) { in php_hash_unserialize_spec()
302 memcpy(buf + pos, Z_STRVAL_P(elt), count); in php_hash_unserialize_spec()
307 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
308 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
312 val = (uint32_t) Z_LVAL_P(elt); in php_hash_unserialize_spec()
314 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
315 if (!elt || Z_TYPE_P(elt) != IS_LONG) { in php_hash_unserialize_spec()
319 val += ((uint64_t) Z_LVAL_P(elt)) << 32; in php_hash_unserialize_spec()

Completed in 12 milliseconds