Home
last modified time | relevance | path

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

12345678910>>...16

/PHP-5.3/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.3/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;\
97 next = current->next; in zend_llist_del_element()
102 current = next; in zend_llist_del_element()
112 next = current->next; in zend_llist_destroy()
117 current = next; in zend_llist_destroy()
168 ptr = ptr->next; in zend_llist_copy()
179 next = element->next; in zend_llist_apply_with_del()
[all …]
/PHP-5.3/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 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.3/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.3/ext/mbstring/oniguruma/
H A Dst.c38 st_table_entry *next; member
225 next = ptr->next;
227 ptr = next;
251 ptr = ptr->next;\
343 next = ptr->next;
347 ptr = next;
423 for(; ptr->next != 0; ptr = ptr->next) {
426 ptr->next = ptr->next->next;
517 ptr = ptr->next;
527 last->next = ptr->next;
[all …]
/PHP-5.3/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.3/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()
239 ps_sd *sd, *next; in ps_mm_destroy() local
250 next = sd->next; in ps_mm_destroy()
417 ps_sd *sd, *next; in PS_GC_FUNC() local
[all …]
/PHP-5.3/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.3/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.3/sapi/fpm/fpm/
H A Dfpm_events.c156 elt->next = NULL; in fpm_event_queue_add()
161 elt->next = *queue; in fpm_event_queue_add()
184 q->prev->next = q->next; in fpm_event_queue_del()
186 if (q->next) { in fpm_event_queue_del()
190 *queue = q->next; in fpm_event_queue_del()
204 q = q->next; in fpm_event_queue_del()
225 q = q->next; in fpm_event_queue_destroy()
392 q = q->next; in fpm_event_loop()
430 q->prev->next = q->next; in fpm_event_loop()
441 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.3/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
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dhash.c180 next_elem = elem->next; in rehash()
183 elem->next = x; in rehash()
189 elem->next = pH->first; in rehash()
221 elem = elem->next; in findElementGivenHash()
236 elem->prev->next = elem->next; in removeElementGivenHash()
238 pH->first = elem->next; in removeElementGivenHash()
240 if( elem->next ){ in removeElementGivenHash()
241 elem->next->prev = elem->prev; in removeElementGivenHash()
244 pH->ht[h].chain = elem->next; in removeElementGivenHash()
341 new_elem->next = elem; in sqliteHashInsert()
[all …]
/PHP-5.3/ext/gd/
H A Dgdcache.c84 elem = elem->next; in gdCacheDelete()
102 prev->next = elem->next; in gdCacheGet()
103 elem->next = head->mru; in gdCacheGet()
110 elem = elem->next; in gdCacheGet()
123 prevprev->next = NULL; in gdCacheGet()
128 elem->next = head->mru; in gdCacheGet()
/PHP-5.3/ext/gd/libgd/
H A Dgdcache.c84 elem = elem->next; in gdCacheDelete()
105 prev->next = elem->next; in gdCacheGet()
106 elem->next = head->mru; in gdCacheGet()
113 elem = elem->next; in gdCacheGet()
129 prevprev->next = NULL; in gdCacheGet()
134 elem->next = head->mru; in gdCacheGet()

Completed in 44 milliseconds

12345678910>>...16