Home
last modified time | relevance | path

Searched refs:current (Results 51 – 75 of 542) sorted by relevance

12345678910>>...22

/PHP-5.3/ext/spl/tests/
H A Darray_014.phpt9 var_dump($it->current());
11 var_dump($it->current());
15 var_dump($it->current());
25 var_dump($it->current());
H A Darray_020.phpt26 function current()
29 return ArrayIterator::current();
52 ArrayIteratorEx::current
58 ArrayIteratorEx::current
H A Dfileobject_001.phpt9 var_dump($o->current());
12 var_dump($o->current());
16 var_dump($o->current());
20 var_dump($o->current());
24 var_dump($o->current());
H A Diterator_021.phpt58 function current()
61 return parent::current();
115 RecursiveArrayIteratorIterator::current
124 RecursiveArrayIteratorIterator::current
133 RecursiveArrayIteratorIterator::current
139 RecursiveArrayIteratorIterator::current
150 RecursiveArrayIteratorIterator::current
165 RecursiveArrayIteratorIterator::current
173 RecursiveArrayIteratorIterator::current
H A Dbug45614.phpt14 echo str_replace("\0", '\0', $it->key()) . " => " . $it->current() .
17 echo str_replace("\0", '\0', $it->key()) . " => " . $it->current() .
31 echo "\n--> Invalidate current position and show the first two items:\n";
33 $ai->current();
50 --> Invalidate current position and show the first two items:
/PHP-5.3/ext/phar/tests/
H A Dphar_buildfromiterator5.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator6.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator9.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator7.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
/PHP-5.3/ext/phar/tests/tar/
H A Dphar_buildfromiterator5.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator6.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator9.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator4.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator7.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
/PHP-5.3/ext/phar/tests/zip/
H A Dphar_buildfromiterator5.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator6.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator9.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator4.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator7.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
/PHP-5.3/ext/simplexml/tests/
H A Dsxe_004.phpt50 function current()
53 return parent::current();
92 SXETest::current
100 SXETest::current
108 SXETest::current
116 SXETest::current
129 SXETest::current
137 SXETest::current
/PHP-5.3/Zend/
H A Dzend_gc.c416 while (current != &GC_G(roots)) { in gc_mark_roots()
417 if (current->handle) { in gc_mark_roots()
438 GC_REMOVE_FROM_BUFFER(current); in gc_mark_roots()
441 current = current->next; in gc_mark_roots()
528 while (current != &GC_G(roots)) { in gc_scan_roots()
529 if (current->handle) { in gc_scan_roots()
539 current = current->next; in gc_scan_roots()
629 while (current != &GC_G(roots)) { in gc_collect_roots()
630 if (current->handle) { in gc_collect_roots()
646 GC_REMOVE_FROM_BUFFER(current); in gc_collect_roots()
[all …]
/PHP-5.3/ext/spl/internal/
H A Drecursivetreeiterator.inc51 /** Prefix used right in front of the current element. */
68 /** @return string to place in front of current element
82 /** @return string presentation build for current element
86 return @(string)parent::current();
89 /** @return string to place after the current element
96 /** @return the current element prefixed and postfixed
98 function current()
102 return parent::current();
110 /** @return the current key prefixed and postfixed
H A Drecursivearrayiterator.inc32 /** @return whether the current element has children
36 return is_array($this->current());
39 /** @return an iterator for the current elements children
45 if ($this->current() instanceof self)
47 return $this->current();
53 return $this->ref->newInstance($this->current());
/PHP-5.3/ext/standard/tests/array/
H A Dcurrent_variation2.phpt2 Test current() function : usage variations - arrays containing different data types
5 /* Prototype : mixed current(array $array_arg)
12 * Pass arrays of different data types as $array_arg to current() to test behaviour
15 echo "*** Testing current() : usage variations ***\n";
108 // loop through each element of $inputs to check the behavior of current()
112 var_dump( current($input) );
120 *** Testing current() : usage variations ***
H A Dbug35022.phpt2 Bug #35022 (Regression in the behavior of key/current functions)
9 echo key($state) . " => " . current($state) . "\n";
14 var_dump( key($state), current($state) );

Completed in 71 milliseconds

12345678910>>...22