Searched refs:elt (Results 1 – 6 of 6) sorted by relevance
8 $elt = $doc->createElement('elt');9 $doc->appendChild($elt);10 $elt->setAttribute('a','&');11 print $doc->saveHtml($elt) . "\n";39 <elt a="&"></elt>41 <elt a="&amp;"></elt>42 <elt a=""></elt>44 <elt a="&"></elt>46 <elt a="&amp;"></elt>47 <elt svg:id="&amp;"></elt>[all …]
8 $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="&"/>42 <elt a="&"/>43 <elt a=""/>45 <elt a=""/>[all …]
12 <elt att="&ref;">a&ref;</elt>
163 struct fpm_event_queue_s *elt; in fpm_event_queue_add() local173 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()
6 foreach ($it as $elt) {}
284 zval *elt; in php_hash_unserialize_spec() local297 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 45 milliseconds