Home
last modified time | relevance | path

Searched refs:current (Results 76 – 100 of 542) sorted by relevance

12345678910>>...22

/PHP-5.3/ext/phar/tests/
H A Dphar_oo_004.phpt56 function current()
59 return parent::current();
105 MyDirectoryIterator::current
111 MyDirectoryIterator::current
117 MyDirectoryIterator::current
123 MyDirectoryIterator::current
H A Dphar_oo_004U.phpt56 function current()
59 return parent::current();
105 MyDirectoryIterator::current
111 MyDirectoryIterator::current
117 MyDirectoryIterator::current
123 MyDirectoryIterator::current
H A Dphar_buildfromiterator3.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
/PHP-5.3/ext/spl/tests/
H A Dobserver_002.phpt26 function current()
28 echo __METHOD__ . "(" . parent::current()->getName() . ")\n";
29 return parent::current();
153 MyObjectStorage::current($ob1)
158 MyObjectStorage::current($ob2)
163 MyObjectStorage::current($ob3)
173 MyObjectStorage::current($ob1)
178 MyObjectStorage::current($ob2)
194 MyObjectStorage::current($ob3)
H A Dbug42703.phpt2 Bug #42703 (Exception raised in an iterator::current() causes segfault in FilterIterator)
15 public function current()
35 var_dump($itit->current());
H A Diterator_002.phpt10 return is_array($this->current());
15 return new RecursiceArrayIterator($this->current());
33 return new RecursiceArrayIterator($this->getInnerIterator()->current());
H A DSplDoublyLinkedList_current_empty.phpt2 Run current() function on an empty SplDoublyLinkedList.
9 var_dump($list->current());
H A DSplObjectStorage_current_empty_storage.phpt2 Check that SplObjectStorage::current returns NULL when storage is empty
10 var_dump($s->current());
H A Dpqueue_current_error.phpt2 SPL: SplPriorityQueue current on empty queue should give null
9 var_dump($h->current());
H A DarrayObject_getIteratorClass_basic1.phpt24 function current() {
27 return parent::current();
80 In MyIterator::current()
85 In MyIterator::current()
90 In MyIterator::current()
/PHP-5.3/ext/standard/tests/array/
H A Dreset_variation3.phpt20 var_dump(current($array1));
30 var_dump(current($array1));
32 var_dump(current($array2));
37 var_dump(current($array1));
39 var_dump(current($array2));
H A D009.phpt2 Test key(), current(), next() & reset() functions
7 mixed current ( array &$array ) -> returns the current element in the array
41 var_dump( current($sub_array)); // current element
42 var_dump( key($sub_array) ); // key of the current element
61 var_dump( current($sub_array)); // current element
77 var_dump( current($unset_array) );
86 var_dump( current() );
93 var_dump( current($temp_array, $temp_array) );
105 var_dump( current($int_var) );
106 var_dump( current($float_var) );
[all …]
H A Dnext_basic.phpt17 echo key($array) . " => " . current($array) . "\n";
20 echo key($array) . " => " . current($array) . "\n";
23 echo key($array) . " => " . current($array) . "\n";
/PHP-5.3/ext/dom/tests/
H A Ddom_comment_variation.phpt22 $current = $children->item($index);
23 echo get_class($current), "\n";
24 var_dump($current->textContent);
H A Ddom_comment_basic.phpt25 $current = $children->item($index);
26 echo get_class($current), "\n";
27 var_dump($current->textContent);
/PHP-5.3/ext/oci8/tests/
H A Dedition_2.phpt159 The value of current EDITION is ORA$BASE
165 The value of current EDITION is MYEDITION
167 The value of current EDITION is MYEDITION
169 The value of current EDITION is MYEDITION
170 The value of current EDITION is MYEDITION
175 The value of current EDITION is MYEDITION
176 The value of current EDITION is MYEDITION
192 The value of current EDITION is ORA$BASE
221 The value of current EDITION is MYEDITION
226 The value of current EDITION is MYEDITION
[all …]
/PHP-5.3/Zend/tests/
H A Dbug32993.phpt2 Bug #32993 (implemented Iterator function current() don't throw exception)
10 public function current() { throw new Exception(); }
13 public function valid() { return (current($this->arr) !== false); }
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c588 xml_element* current; member
602 c = mydata->current; in _xmlrpc_startElement()
604 mydata->current = xml_elem_new(); in _xmlrpc_startElement()
605 mydata->current->name = (char*)strdup(name); in _xmlrpc_startElement()
606 mydata->current->parent = c; in _xmlrpc_startElement()
614 Q_PushTail(&mydata->current->attrs, attr); in _xmlrpc_startElement()
627 if(mydata && mydata->current && mydata->current->parent) { in _xmlrpc_endElement()
628 Q_PushTail(&mydata->current->parent->children, mydata->current); in _xmlrpc_endElement()
630 mydata->current = mydata->current->parent; in _xmlrpc_endElement()
640 if(mydata && mydata->current) { in _xmlrpc_charHandler()
[all …]
/PHP-5.3/tests/lang/
H A DforeachLoopObjects.005.phpt2 Foreach loop tests - removing properties before and after the current property during the loop.
14 echo "\nRemoving properties before the current element from an iterated object.\n";
29 echo "\nRemoving properties before the current element from an iterated object.\n";
47 Removing properties before the current element from an iterated object.
63 Removing properties before the current element from an iterated object.
/PHP-5.3/ext/spl/internal/
H A Drecursiveiteratoriterator.inc89 /** @return current key
97 /** @return current element
99 function current()
102 return $it->current();
156 /** @return Sub Iterator at given level or if unspecified the current sub
182 /** @return whether current sub iterators current element has children
190 /** @return current sub iterators current children
205 /** Called after current child iterator is invalid and right before it
H A Dfilteriterator.inc23 * method accept(). Typically this invloves reading the current element or
51 * @return whether or not to expose the current element of the inner
88 * @return The current key
95 * @return The current value
97 function current() {
98 return $this->it->current();
/PHP-5.3/ext/posix/tests/
H A Dposix_getsid.phpt4 Get the current session id of a process pid (POSIX.1, 4.2.1)
18 echo "\n-- Testing posix_getsid() function with current process pid --\n";
26 -- Testing posix_getsid() function with current process pid --
/PHP-5.3/tests/classes/
H A Diterators_008.phpt25 public function current() {
40 D::current(2)
43 D::current(1)
/PHP-5.3/ext/spl/examples/
H A Dinigroups.inc23 * relation. Doing so both current() and key() methods must be overwritten.
40 * @return The current group.
42 function current() {
47 * @return The current group.
/PHP-5.3/ext/spl/
H A Dspl_dllist.c147 while (current) { in spl_ptr_llist_destroy()
148 next = current->next; in spl_ptr_llist_destroy()
149 if(current && dtor) { in spl_ptr_llist_destroy()
153 current = next; in spl_ptr_llist_destroy()
175 current = current->prev; in spl_ptr_llist_offset()
177 current = current->next; in spl_ptr_llist_offset()
181 return current; in spl_ptr_llist_offset()
323 while (current) { in spl_ptr_llist_copy()
331 current = next; in spl_ptr_llist_copy()
535 while (current) { in spl_dllist_object_get_debug_info()
[all …]

Completed in 34 milliseconds

12345678910>>...22