Home
last modified time | relevance | path

Searched refs:next (Results 76 – 100 of 547) sorted by relevance

12345678910>>...22

/PHP-8.2/sapi/fuzzer/corpus/unserialize/
H A Dbug713131 …3:{x:i:2;O:8:"stdClass":0:{},a:2:{s:4:"prev";i:2;s:4:"next";O:8:"stdClass":0:{}};r:7;,R:2;s:4:"nex…
/PHP-8.2/ext/opcache/
H A Dzend_accelerator_hash.c117 entry = entry->next; in zend_accel_hash_update()
136 entry->next = accel_hash->hash_table[index]; in zend_accel_hash_update()
171 entry = entry->next; in zend_accel_hash_find_ex()
212 last_entry->next = entry->next; in zend_accel_hash_unlink()
214 accel_hash->hash_table[index] = entry->next; in zend_accel_hash_unlink()
219 entry = entry->next; in zend_accel_hash_unlink()
/PHP-8.2/ext/spl/tests/
H A Ddit_004.phpt15 $a->next();
16 $a->next();
17 $a->next();
H A Dobserver_002.phpt32 function next(): void
35 parent::next();
154 MyObjectStorage::next()
159 MyObjectStorage::next()
164 MyObjectStorage::next()
174 MyObjectStorage::next()
179 MyObjectStorage::next()
195 MyObjectStorage::next()
H A Dbug49263.phpt10 $s->attach($o1, array('prev' => 2, 'next' => $o2));
19 O:16:"SplObjectStorage":2:{i:0;a:4:{i:0;O:8:"stdClass":0:{}i:1;a:2:{s:4:"prev";i:2;s:4:"next";O:8:"…
32 ["next"]=>
H A Dbug31346.phpt2 Bug #31486 (ArrayIterator::next segfaults)
13 $i->next();
H A Dbug74519.phpt10 $events->next();
14 $iterator->next();
H A Diterator_034.phpt70 function next(): void
73 parent::next();
129 RecursiveArrayIteratorIterator::next()
139 RecursiveArrayIteratorIterator::next()
149 RecursiveArrayIteratorIterator::next()
155 RecursiveArrayIteratorIterator::next()
167 RecursiveArrayIteratorIterator::next()
H A DarrayObject_getIteratorClass_basic1.phpt30 function next(): void {
33 parent::next();
83 In MyIterator::next()
88 In MyIterator::next()
93 In MyIterator::next()
H A Diterator_041.phpt51 function next(): void
54 parent::next();
101 State 6: next()
113 State 6: next()
H A Ddit_006.phpt11 $di->next();
20 $di->next();
28 $di->next();
/PHP-8.2/ext/standard/tests/array/
H A Dreset_basic.phpt16 echo "\n-- Call to next() --\n";
17 var_dump(next($array));
31 -- Call to next() --
H A Dkey_variation3.phpt20 next($array1);
22 echo "\n-- Position after calling next() --\n";
34 -- Position after calling next() --
H A Darray_next_error1.phpt2 next - ensure warning is received when passing an indirect temporary.
8 var_dump(next(f()));
H A Dcurrent_variation3.phpt15 next($array1);
20 echo "\n-- Position after calling next() --\n";
32 -- Position after calling next() --
/PHP-8.2/Zend/tests/generators/
H A Dyield_from_aborted_generator_with_children.phpt18 $gen2->next();
22 $gen3->next();
29 #1 %s(%d): Generator->next()
H A Dget_return.phpt22 $gen->next();
35 $gen->next();
47 $gen->next();
57 $gen->next();
H A Dbug74954.phpt27 $g->next();
38 #2 %s(%d): Generator->next()
44 #1 %s(%d): Generator->next()
/PHP-8.2/Zend/tests/
H A Dgh9916-010.phpt20 print "Before next\n";
21 $gen->next();
32 Before next
H A Dgh15275-006.phpt28 $gen->next();
42 #2 %s(25): Generator->next()
49 #2 %s(25): Generator->next()
/PHP-8.2/ext/dom/
H A Dparentnode.c46 first = first->next; in dom_parent_node_first_element_child_read()
117 first = first->next; in dom_parent_node_child_element_count()
162 last->next = child; in dom_add_child_without_merging()
209 xmlNodePtr next = newNode->next; in dom_zvals_to_fragment() local
212 newNode = next; in dom_zvals_to_fragment()
251 node = node->next; in dom_fragment_assign_parent_node()
309 parentNode->last->next = newchild; in dom_pre_insert()
317 fragment->last->next = insertion_point; in dom_pre_insert()
319 insertion_point->prev->next = newchild; in dom_pre_insert()
349 prevsib->next = newchild; in dom_parent_node_append()
[all …]
/PHP-8.2/TSRM/
H A DTSRM.c36 tsrm_tls_entry *next; member
201 next_p = p->next; in tsrm_shutdown()
270 p = p->next; in tsrm_update_active_threads()
388 (*thread_resources_ptr)->next = NULL; in allocate_new_resource()
458 if (thread_resources->next) { in ts_resource_ex()
484 tsrm_tls_entry *next = thread_resources->next; in ts_resource_ex() local
494 thread_resources->next = next; in ts_resource_ex()
527 last->next = thread_resources->next; in ts_free_thread()
535 if (thread_resources->next) { in ts_free_thread()
538 thread_resources = thread_resources->next; in ts_free_thread()
[all …]
/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_substitute.c544 PCRE2_UCHAR next; in pcre2_substitute() local
558 next = *ptr; in pcre2_substitute()
562 if (next == CHAR_ASTERISK) in pcre2_substitute()
565 next = *ptr; in pcre2_substitute()
569 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()
571 group = next - CHAR_0; in pcre2_substitute()
574 next = *ptr; in pcre2_substitute()
575 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()
601 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
603 name[n++] = next; in pcre2_substitute()
[all …]
/PHP-8.2/tests/classes/
H A Diterators_008.phpt16 public function next(): void {
43 D::next(1)
46 D::next(0)
/PHP-8.2/Zend/tests/array_unpack/
H A Dalready_occupied.phpt31 Cannot add element to the array as the next element is already occupied
32 Cannot add element to the array as the next element is already occupied
33 Cannot add element to the array as the next element is already occupied

Completed in 46 milliseconds

12345678910>>...22