Home
last modified time | relevance | path

Searched refs:next (Results 101 – 125 of 449) sorted by relevance

12345678910>>...18

/PHP-5.5/ext/phar/tests/tar/
H A Dphar_buildfromiterator5.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
H A Dphar_buildfromiterator6.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
H A Dphar_buildfromiterator7.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
/PHP-5.5/ext/phar/tests/zip/
H A Dphar_buildfromiterator5.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
H A Dphar_buildfromiterator6.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
H A Dphar_buildfromiterator7.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
/PHP-5.5/ext/phar/tests/
H A Dphar_buildfromiterator5.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
H A Dphar_buildfromiterator7.phpt17 function next() {
18 echo "next\n";
19 return next($this->a);
/PHP-5.5/ext/standard/tests/array/
H A Dcurrent_variation3.phpt21 next($array1);
26 echo "\n-- Position after calling next() --\n";
39 -- Position after calling next() --
/PHP-5.5/ext/zlib/tests/
H A Dgzseek_basic.phpt17 //read the next 10
23 //read the next 10
29 //read the next 10
H A Dgzseek_variation2.phpt17 //read the next 10
23 //read the next 10
29 //read the next 10
H A Dgzseek_variation3.phpt17 //read the next 10
23 //read the next 10
29 //read the next 10
/PHP-5.5/tests/classes/
H A Diterators_002.phpt29 function next() {
87 c_iter::next
98 c_iter::next
109 c_iter::next
/PHP-5.5/ext/spl/tests/
H A Diterator_009.phpt28 function next()
31 parent::next();
/PHP-5.5/ext/spl/internal/
H A Dappenditerator.inc87 /** Move to the next element. If this means to another Iterator that
91 function next()
97 $this->getInnerIterator()->next();
102 $this->iterators->next();
110 $this->iterators->next();
H A Drecursiveiteratoriterator.inc32 * to the next element. */
50 * getChildren() calls and simply jumps to the next
105 /** Forward to next element
107 function next()
124 $it->next();
139 $it->next();
230 /** Called when the next element is available
/PHP-5.5/ext/xmlreader/tests/
H A D010.phpt2 XMLReader: libxml2 XML Reader, next
18 $reader->next();
/PHP-5.5/Zend/tests/generators/
H A Dnested_method_calls.phpt28 $g1->next();
29 $g2->next();
/PHP-5.5/ext/date/tests/
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 Dbug41599.phpt17 //jumped to next Sunday
21 //jumped to next Sunday again
/PHP-5.5/ext/mysqli/
H A Dmysqli_warning.c48 w = w->next; in php_clear_warnings()
94 prev->next = w; in php_get_warnings()
171 prev->next = (void *)w; in php_get_warnings()
186 PHP_METHOD(mysqli_warning, next) in PHP_METHOD() argument
200 if (w && w->next) { in PHP_METHOD()
201 w = w->next; in PHP_METHOD()
333 PHP_ME(mysqli_warning, next, NULL, ZEND_ACC_PUBLIC)
/PHP-5.5/ext/ereg/regex/
H A Dregcomp.c43 #define PEEK() (*p->next)
51 #define NEXT() (p->next++)
139 p->end = p->next + len;
597 if (p->next + 5 < p->end && strncmp(p->next, "[:<:]]", 6) == 0) {
602 if (p->next + 5 < p->end && strncmp(p->next, "[:>:]]", 6) == 0) {
742 len = p->next - sp;
815 len = p->next - sp;
858 p->next = bracket;
865 p->next = oldnext;
903 p->next = bracket;
[all …]
/PHP-5.5/ext/dba/libinifile/
H A Dinifile.c106 inifile_line_free(&dba->next); in inifile_free()
250 …if (skip == -1 && dba->next.key.group && dba->next.key.name && !inifile_key_cmp(&dba->next.key, ke… in inifile_fetch()
252 php_stream_seek(dba->fp, dba->next.pos, SEEK_SET); in inifile_fetch()
257 inifile_line_free(&dba->next); in inifile_fetch()
267 inifile_line_free(&dba->next); in inifile_fetch()
268 dba->next = ln; in inifile_fetch()
269 dba->next.pos = php_stream_tell(dba->fp); in inifile_fetch()
281 dba->next.pos = php_stream_tell(dba->fp); in inifile_fetch()
335 inifile_line_free(&dba->next); in inifile_find_group()
/PHP-5.5/Zend/
H A Dzend_signal.c93 qtmp = queue->next; in zend_signal_handler_defer()
94 queue->next = SIGG(pavail); in zend_signal_handler_defer()
105 SIGG(pavail) = queue->next; in zend_signal_handler_defer()
109 queue->next = NULL; in zend_signal_handler_defer()
112 SIGG(ptail)->next = queue; in zend_signal_handler_defer()
142 SIGG(phead) = queue->next; in zend_signal_handler_unblock()
144 queue->next = SIGG(pavail); in zend_signal_handler_unblock()
333 queue->next = zend_signal_globals->pavail; in zend_signal_globals_ctor()
/PHP-5.5/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h39 struct pdo_sqlite_func *next; member
50 struct pdo_sqlite_collation *next; member

Completed in 50 milliseconds

12345678910>>...18