Home
last modified time | relevance | path

Searched refs:next (Results 151 – 175 of 527) sorted by relevance

12345678910>>...22

/PHP-8.2/ext/opcache/tests/jit/
H A Darray_elem_002.phpt2 Occupied next element
17 Fatal error: Uncaught Error: Cannot add element to the array as the next element is already occupie…
/PHP-8.2/ext/date/tests/
H A Ddate_interval_non_relative_warning.phpt6 'next weekday 15:30',
22 Warning: DateInterval::createFromDateString(): String 'next weekday 15:30' contains non-relative el…
30 Warning: date_interval_create_from_date_string(): String 'next weekday 15:30' contains non-relative…
H A Dbug41599.phpt17 //jumped to next Sunday
21 //jumped to next Sunday again
H A Dbug33415-2.phpt11 $strtotime_tstamp = strtotime("next Wednesday", $tStamp);
19 $strtotime_tstamp = strtotime("next Thursday", $tStamp);
28 $strtotime_tstamp = strtotime("next Thursday", $tStamp);
37 $strtotime_tstamp = strtotime("next Saturday", $tStamp);
45 $strtotime_tstamp = strtotime("next Thursday", $tStamp);
54 $strtotime_tstamp = strtotime("next Sunday", $tStamp);
62 $strtotime_tstamp = strtotime("next Sunday", $tStamp);
71 $strtotime_tstamp = strtotime("next Tuesday", $tStamp);
80 $strtotime_tstamp = strtotime("next Monday", $tStamp);
88 $strtotime_tstamp = strtotime("next Sunday", $tStamp);
[all …]
H A Ddate-time-modify-times.phpt11 'next week monday',
12 'next week monday 10am',
H A Ddate_period.phpt8 $di = DateInterval::createFromDateString( 'first day of next month' );
19 $di = DateInterval::createFromDateString( 'last thursday of next month' );
/PHP-8.2/Zend/
H A Dzend_signal.c114 qtmp = queue->next; in zend_signal_handler_defer()
115 queue->next = SIGG(pavail); in zend_signal_handler_defer()
126 SIGG(pavail) = queue->next; in zend_signal_handler_defer()
130 queue->next = NULL; in zend_signal_handler_defer()
133 SIGG(ptail)->next = queue; in zend_signal_handler_defer()
163 SIGG(phead) = queue->next; in zend_signal_handler_unblock()
165 queue->next = SIGG(pavail); in zend_signal_handler_unblock()
366 SIGG(ptail)->next = SIGG(pavail); in zend_signal_deactivate()
384 queue->next = zend_signal_globals->pavail; in zend_signal_globals_ctor()
/PHP-8.2/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h35 struct pdo_sqlite_func *next; member
46 struct pdo_sqlite_collation *next; member
/PHP-8.2/sapi/phpdbg/
H A Dphpdbg_prompt.c123 phpdbg_param_t *next = name->next; in phpdbg_call_register() local
134 add_next_index_stringl(&params, next->str, next->len); in phpdbg_call_register()
147 … spprintf(&buffered, 0, "%s::%s#"ZEND_LONG_FMT, next->method.class, next->method.name, next->num); in phpdbg_call_register()
171 next = next->next; in phpdbg_call_register()
1646 goto next; \
1680 goto next; in phpdbg_execute_ex()
1719 goto next; in phpdbg_execute_ex()
1734 goto next; in phpdbg_execute_ex()
1757 goto next; in phpdbg_execute_ex()
1810 next: in phpdbg_execute_ex()
[all …]
/PHP-8.2/Zend/tests/
H A Dassign_ref_error_var_handling.phpt27 Cannot add element to the array as the next element is already occupied
29 Cannot add element to the array as the next element is already occupied
H A Dbug32993.phpt12 public function next(): void { next($this->arr); }
H A Dbug32674.phpt25 public function next(): void {
26 $element = next($this->_elements);
/PHP-8.2/ext/standard/tests/array/
H A Dkey_basic.phpt16 next($array);
24 next($array);
/PHP-8.2/ext/intl/grapheme/
H A Dgrapheme_string.c703 zval *next = NULL; /* return offset of next part of the string */ in PHP_FUNCTION() local
705 …ters(ZEND_NUM_ARGS(), "sl|llz", &str, &str_len, &size, &extract_type, &lstart, &next) == FAILURE) { in PHP_FUNCTION()
713 if ( NULL != next ) { in PHP_FUNCTION()
714 if ( !Z_ISREF_P(next) ) { in PHP_FUNCTION()
719 ZVAL_DEREF(next); in PHP_FUNCTION()
721 zval_ptr_dtor(next); in PHP_FUNCTION()
722 ZVAL_LONG(next, lstart); in PHP_FUNCTION()
778 if ( NULL != next ) { in PHP_FUNCTION()
779 ZVAL_LONG(next, start+nsize); in PHP_FUNCTION()
812 if ( NULL != next ) { in PHP_FUNCTION()
[all …]
/PHP-8.2/ext/mysqli/tests/
H A Dbug42548.phpt39 print "----- next result -----------\n";
68 ----- next result -----------
73 ----- next result -----------
H A Dmysqli_get_warnings.phpt48 if (!method_exists($warning, 'next'))
49 printf("[009] Borked object, method next is missing\n");
64 if (false !== ($tmp = $warning->next()))
77 if (true !== ($tmp = $warning->next()))
80 if (false !== ($tmp = $warning->next()))
108 if (false !== ($tmp = $warning->next()))
129 while ($warning->next() && ('' != ($tmp = $warning->message))) {
137 if (false !== ($tmp = $warning->next()))
/PHP-8.2/ext/soap/
H A Dphp_xml.c61 trav = trav->next; in cleanup_xml_node()
239 node = node->next; in get_attribute_ex()
250 node = node->next; in get_node_ex()
266 node = node->next; in get_node_recurisve_ex()
287 node = node->next; in get_node_with_attribute_ex()
307 node = node->next; in get_node_with_attribute_recursive_ex()
/PHP-8.2/ext/spl/
H A Dspl_heap.stub.php69 public function next(): void {} function in SplPriorityQueue
123 public function next(): void {} function in SplHeap
/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_jit_misc.c59 void *next; in PRIV()
65 next = *(void**)current; in PRIV()
67 current = next; in PRIV()
/PHP-8.2/ext/dom/
H A Ddocumentfragment.c75 cur = cur->next; in php_dom_xmlSetTreeDoc()
78 prop = prop->next; in php_dom_xmlSetTreeDoc()
85 cur = cur->next; in php_dom_xmlSetTreeDoc()
/PHP-8.2/Zend/Optimizer/
H A Dzend_ssa.c545 const zend_op *next; in _zend_ssa_rename_op() local
591 next = opline + 1; in _zend_ssa_rename_op()
616 next = opline + 1; in _zend_ssa_rename_op()
629 next = opline + 1; in _zend_ssa_rename_op()
642 next = opline + 1; in _zend_ssa_rename_op()
655 next = opline + 1; in _zend_ssa_rename_op()
669 next = opline + 1; in _zend_ssa_rename_op()
817 phi = phi->next; in zend_ssa_rename()
882 q = q->next; in zend_ssa_rename()
1021 phi->next = *pp; in zend_build_ssa()
[all …]
/PHP-8.2/ext/sysvshm/
H A Dsysvshm.c385 shm_var->next = total_size; in php_put_shm_data()
411 pos += shm_var->next; in php_check_shm_data()
413 if (shm_var->next <= 0 || pos < ptr->start) { in php_check_shm_data()
430 next_chunk_ptr = (sysvshm_chunk *) ((char *) ptr + shm_varpos + chunk_ptr->next); in php_remove_shm_data()
432 memcpy_len = ptr->end-shm_varpos - chunk_ptr->next; in php_remove_shm_data()
433 ptr->free += chunk_ptr->next; in php_remove_shm_data()
434 ptr->end -= chunk_ptr->next; in php_remove_shm_data()
/PHP-8.2/ext/mbstring/tests/
H A Dbug69079.phpt11 mb_substitute_character(0x3f); // Reset to '?', as the next call will fail
21 mb_substitute_character(0x63); // Reset to '?', as the next call will fail
/PHP-8.2/ext/spl/tests/
H A Darray_015.phpt2 SPL: ArrayIterator::next() with internal arrays
19 $it->next();
H A Diterator_025.phpt41 $it->next();
48 $it->next();

Completed in 47 milliseconds

12345678910>>...22