Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 449) sorted by relevance

12345678910>>...18

/PHP-5.5/ext/standard/tests/array/
H A Dnext_error.phpt2 Test next() function : error conditions - Pass incorrect number of arguments
5 /* Prototype : mixed next(array $array_arg)
11 * Pass incorrect number of arguments to next() to test behaviour
14 echo "*** Testing next() : error conditions ***\n";
17 echo "\n-- Testing next() function with Zero arguments --\n";
18 var_dump( next() );
20 //Test next with one more than the expected number of arguments
24 var_dump( next($array_arg, $extra_arg) );
28 *** Testing next() : error conditions ***
30 -- Testing next() function with Zero arguments --
[all …]
H A Dnext_variation1.phpt2 Test next() function : usage variation - Pass different data types as $array_arg
5 /* Prototype : mixed next(array $array_arg)
11 * Pass different data types as $array_arg argument to next() to test behaviour
14 echo "*** Testing next() : variation ***\n";
85 // loop through each element of $inputs to check the behavior of next()
89 var_dump( next($input) );
97 *** Testing next() : variation ***
146 Warning: next() expects parameter 1 to be array, null given in %s on line %d
151 Warning: next() expects parameter 1 to be array, null given in %s on line %d
207 Warning: next() expects parameter 1 to be array, null given in %s on line %d
[all …]
H A Dnext_basic.phpt2 Test next() function : basic functionality
5 /* Prototype : mixed next(array $array_arg)
6 * Description: Move array argument's internal pointer to the next element and return it
11 * Test basic functionality of next()
14 echo "*** Testing next() : basic functionality ***\n";
18 var_dump(next($array));
21 var_dump(next($array));
24 var_dump(next($array));
28 *** Testing next() : basic functionality ***
H A Dnext_variation2.phpt2 Test next() function : usage variation - Mulit-dimensional arrays
5 /* Prototype : mixed next(array $array_arg)
6 * Description: Move array argument's internal pointer to the next element and return it
11 * Test next() when passed:
17 echo "*** Testing next() : usage variations ***\n";
22 var_dump(next($array_arg));
23 var_dump(next($array_arg));
26 var_dump(next($array_arg[0]));
30 *** Testing next() : usage variations ***
/PHP-5.5/ext/spl/tests/
H A Diterator_007.phpt28 function next()
31 parent::next();
57 function next()
60 parent::next();
106 ArrayIteratorEx::next
110 ArrayIteratorEx::next
114 ArrayIteratorEx::next
118 ArrayIteratorEx::next
132 ArrayIteratorEx::next
139 ArrayIteratorEx::next
[all …]
H A Diterator_008.phpt28 function next()
31 parent::next();
55 ArrayIteratorEx::next
60 ArrayIteratorEx::next
65 ArrayIteratorEx::next
72 ArrayIteratorEx::next
77 ArrayIteratorEx::next
82 ArrayIteratorEx::next
H A Dfixedarray_019.phpt14 public function next() {
15 echo "next\n";
16 return parent::next();
40 next
45 next
50 next
H A Diterator_039.phpt41 public function next()
80 NumericArrayIterator::next
86 NumericArrayIterator::next
92 NumericArrayIterator::next
98 NumericArrayIterator::next
103 NumericArrayIterator::next
105 NumericArrayIterator::next
113 NumericArrayIterator::next
119 NumericArrayIterator::next
H A Dfixedarray_003.phpt23 public function next() {
24 echo "A::next\n";
25 return parent::next();
64 A::next
69 A::next
74 A::next
79 A::next
84 A::next
H A Dbug61527.phpt9 $ai->next();
18 $ai2->next();
28 $ai2->next();
33 $ai2->next();
38 $ai2->next();
39 $ai2->next();
41 var_dump($ai2->next());
53 $ai4->next();
54 $ai4->next();
55 $ai4->next();
[all …]
H A Diterator_014.phpt54 function next()
57 parent::next();
84 RecursiveArrayIteratorIterator::next
91 RecursiveArrayIteratorIterator::next
98 RecursiveArrayIteratorIterator::next
103 RecursiveArrayIteratorIterator::next
114 RecursiveArrayIteratorIterator::next
127 RecursiveArrayIteratorIterator::next
134 RecursiveArrayIteratorIterator::next
H A Diterator_021.phpt53 $this->next();
70 function next()
73 parent::next();
118 RecursiveArrayIteratorIterator::next
127 RecursiveArrayIteratorIterator::next
136 RecursiveArrayIteratorIterator::next
142 RecursiveArrayIteratorIterator::next
153 RecursiveArrayIteratorIterator::next
156 RecursiveArrayIteratorIterator::next
168 RecursiveArrayIteratorIterator::next
[all …]
/PHP-5.5/tests/classes/
H A Diterators_001.phpt97 c_iter::next
101 c_iter::next
105 c_iter::next
113 c_iter::next
117 c_iter::next
121 c_iter::next
133 c_iter::next
137 c_iter::next
141 c_iter::next
143 c_iter::next
[all …]
/PHP-5.5/Zend/
H A Dzend_llist.c42 tmp->next = NULL; in zend_llist_add_element()
44 l->tail->next = tmp; in zend_llist_add_element()
59 tmp->next = l->head; in zend_llist_prepend_element()
75 (current)->prev->next = (current)->next;\
79 if ((current)->next) {\
100 current = current->next; in zend_llist_del_element()
110 next = current->next; in zend_llist_destroy()
115 current = next; in zend_llist_destroy()
166 ptr = ptr->next; in zend_llist_copy()
177 next = element->next; in zend_llist_apply_with_del()
[all …]
/PHP-5.5/ext/intl/tests/
H A Dbreakiter_next_error.phpt2 IntlBreakIterator::next(): arg errors
14 var_dump($bi->next(1, 2));
15 var_dump($bi->next(array()));
19 Warning: IntlBreakIterator::next() expects exactly 1 parameter, 2 given in %s on line %d
21 Warning: IntlBreakIterator::next(): breakiter_next: bad arguments in %s on line %d
24 Warning: IntlBreakIterator::next() expects parameter 1 to be long, array given in %s on line %d
26 Warning: IntlBreakIterator::next(): breakiter_next: bad arguments in %s on line %d
H A Dbreakiter_next_basic.phpt2 IntlBreakIterator::next(): basic test
16 var_dump($bi->next());
17 var_dump($bi->next(2));
18 var_dump($bi->next(-1));
19 var_dump($bi->next(0));
20 var_dump($bi->next(NULL));
/PHP-5.5/ext/mbstring/oniguruma/
H A Dst.c22 st_table_entry *next; member
209 next = ptr->next;
211 ptr = next;
235 ptr = ptr->next;\
327 next = ptr->next;
331 ptr = next;
407 for(; ptr->next != 0; ptr = ptr->next) {
410 ptr->next = ptr->next->next;
506 ptr = ptr->next;
516 last->next = ptr->next;
[all …]
/PHP-5.5/ext/date/tests/
H A Dbug51096.phpt8 'next month',
9 'first day next month',
10 'last day next month',
11 'first day of next month',
12 'last day of next month'
37 next month
41 first day next month
45 last day next month
49 first day of next month
53 last day of next month
/PHP-5.5/ext/standard/tests/file/
H A Dbug39538.phpt5 …s is an test\", \"next data\", \"p\narsed\"","\"\r\nthis is an test\", \"next data\", \"p\r\narsed…
20 [1] => next data
28 [1] => next data
37 [1] => next data
/PHP-5.5/ext/session/
H A Dmod_mm.c48 struct ps_sd *next; member
91 ps_sd *ps, *next; in hash_split() local
104 next = ps->next; in hash_split()
146 if (!sd->next) { in ps_sd_new()
169 for (prev = data->hash[slot]; prev->next != sd; prev = prev->next); in ps_sd_destroy()
170 prev->next = sd->next; in ps_sd_destroy()
199 prev->next = ret->next; in ps_sd_lookup()
253 ps_sd *sd, *next; in ps_mm_destroy() local
264 next = sd->next; in ps_mm_destroy()
452 ps_sd *sd, *next; in PS_GC_FUNC() local
[all …]
/PHP-5.5/tests/lang/
H A DforeachLoopIteratorAggregate.001.phpt15 public function next() {
51 public function next() {
172 --> EnglishMealIterator::next (0)
177 --> EnglishMealIterator::next (1)
182 --> EnglishMealIterator::next (2)
191 --> FrenchMealIterator::next (0)
196 --> FrenchMealIterator::next (1)
201 --> FrenchMealIterator::next (2)
206 --> FrenchMealIterator::next (3)
243 --> EnglishMealIterator::next (0)
[all …]
H A DforeachLoopIteratorAggregate.003.phpt15 public function next() {
83 --> EnglishMealIterator::next (0)
88 --> EnglishMealIterator::next (1)
93 --> EnglishMealIterator::next (2)
102 --> EnglishMealIterator::next (0)
107 --> EnglishMealIterator::next (1)
112 --> EnglishMealIterator::next (2)
121 --> EnglishMealIterator::next (0)
126 --> EnglishMealIterator::next (1)
131 --> EnglishMealIterator::next (2)
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_events.c160 elt->next = NULL; in fpm_event_queue_add()
165 elt->next = *queue; in fpm_event_queue_add()
188 q->prev->next = q->next; in fpm_event_queue_del()
190 if (q->next) { in fpm_event_queue_del()
194 *queue = q->next; in fpm_event_queue_del()
208 q = q->next; in fpm_event_queue_del()
229 q = q->next; in fpm_event_queue_destroy()
400 q = q->next; in fpm_event_loop()
438 q->prev->next = q->next; in fpm_event_loop()
449 q = q->next; in fpm_event_loop()
[all …]
H A Dfpm_children.c96 child->next = wp->children; in fpm_child_link()
97 if (child->next) { in fpm_child_link()
98 child->next->prev = child; in fpm_child_link()
111 child->prev->next = child->next; in fpm_child_unlink()
113 child->wp->children = child->next; in fpm_child_unlink()
116 if (child->next) { in fpm_child_unlink()
117 child->next->prev = child->prev; in fpm_child_unlink()
127 for (wp = fpm_worker_all_pools; wp; wp = wp->next) { in fpm_child_find()
166 struct fpm_child_s *next; in fpm_children_free() local
168 for (; child; child = next) { in fpm_children_free()
[all …]
/PHP-5.5/ext/phar/tests/
H A Dphar_buildfromiterator4.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
65 next
69 next
73 next
77 next

Completed in 64 milliseconds

12345678910>>...18