Home
last modified time | relevance | path

Searched refs:next (Results 151 – 175 of 449) sorted by relevance

12345678910>>...18

/PHP-5.5/ext/intl/breakiterator/
H A Dcodepointiterator_internal.h61 virtual int32_t next(void);
71 virtual int32_t next(int32_t n);
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Doutput.c48 struct stk_rec *next; member
158 temp->next = digits; in bc_out_num()
170 digits = digits->next; in bc_out_num()
/PHP-5.5/ext/soap/interop/
H A Dclient_round2_params.php446 $test = new SOAP_Test('echoVoid(echoMeStringRequest mustUnderstand=0 actor=next)', NULL);
458 $test = new SOAP_Test('echoVoid(echoMeStringRequest mustUnderstand=1 actor=next)', NULL);
514 $test = new SOAP_Test('echoVoid(echoMeStructRequest mustUnderstand=0 actor=next)', NULL);
531 $test = new SOAP_Test('echoVoid(echoMeStructRequest mustUnderstand=1 actor=next)', NULL);
579 $test = new SOAP_Test('echoVoid(echoMeUnknown mustUnderstand=0 actor=next)', NULL);
592 $test = new SOAP_Test('echoVoid(echoMeUnknown mustUnderstand=1 actor=next)', NULL);
/PHP-5.5/ext/spl/tests/
H A Dbug37457.phpt28 public function next()
31 $this->valid = (false !== next($this->array));
H A Diterator_041a.phpt51 function next()
54 return parent::next();
H A Dbug67538.phpt13 $list->next();
H A Ddllist_007.phpt12 var_dump($a->current(), $a->next());
/PHP-5.5/ext/spl/
H A Dspl.php562 function next(); function
846 function next() {/**/} function in ArrayIterator
1011 function next() {/**/} function in DirectoryIterator
1118 function next() {/**/} function in SimpleXMLIterator
/PHP-5.5/ext/standard/
H A Dvar_unserializer.re33 void *next;
46 var_hash->next = 0;
76 var_hash->next = 0;
107 var_hash->next = 0;
136 var_hash = var_hash->next;
148 var_hash = var_hash->next;
163 void *next;
171 next = var_hash->next;
173 var_hash = next;
185 next = var_hash->next;
[all …]
/PHP-5.5/ext/simplexml/
H A Dsxe.c114 PHP_METHOD(ce_SimpleXMLIterator, next) in PHP_METHOD() argument
149 node = node->next; in PHP_METHOD()
181 …PHP_ME(ce_SimpleXMLIterator, next, arginfo_simplexmliterator__void, ZEND_ACC_PUB…
/PHP-5.5/tests/classes/
H A Diterators_006.phpt18 $this->next();
33 function next() {
/PHP-5.5/ext/imap/
H A Dphp_imap.h84 struct php_imap_mailbox_struct *next; member
90 struct php_imap_error_struct *next; member
95 struct _php_imap_message_struct *next; member
/PHP-5.5/ext/dba/libcdb/
H A Dcdb_make.c86 head->next = c->head; in cdb_make_addend()
153 for (x = c->head; x; x = x->next) { in cdb_make_finish()
186 for (x = c->head; x; x = x->next) { in cdb_make_finish()
225 x = x->next; in cdb_make_finish()
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.c434 struct placeholder *next; member
470 plc->next = NULL; in pdo_parse_params()
476 placetail->next = plc; in pdo_parse_params()
525 for (plc = placeholders; plc; plc = plc->next) { in pdo_parse_params()
547 for (plc = placeholders; plc; plc = plc->next) { in pdo_parse_params()
649 plc = plc->next; in pdo_parse_params()
676 for (plc = placeholders; plc; plc = plc->next) { in pdo_parse_params()
717 for (plc = placeholders; plc; plc = plc->next) { in pdo_parse_params()
734 placeholders = plc->next; in pdo_parse_params()
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c86 if (ap_pass_brigade(f->next, bb) != APR_SUCCESS || ctx->r->connection->aborted) { in php_apache_sapi_ub_write()
280 if (ap_pass_brigade(f->next, bb) != APR_SUCCESS || ctx->r->connection->aborted) { in php_apache_sapi_flush()
371 return ap_get_brigade(f->next, bb, mode, block, readbytes); in php_input_filter()
381 if ((rv = ap_get_brigade(f->next, bb, mode, block, readbytes)) != APR_SUCCESS) { in php_input_filter()
474 return ap_pass_brigade(f->next, bb); in php_output_filter()
482 return ap_pass_brigade(f->next, bb); in php_output_filter()
524 ctx->f = f->next; /* save whatever filters are after us in the chain. */ in php_output_filter()
530 return ap_pass_brigade(f->next, bb); in php_output_filter()
566 return ap_pass_brigade(f->next, pbb->bb); in php_output_filter()
654 f = f->next; in php_add_filter()
/PHP-5.5/Zend/tests/generators/
H A Dyield_closure.phpt11 $gen->next();
H A Dbug67497.phpt14 $values->next();
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c190 h->buckets->next = NULL; in fcgi_hash_init()
194 h->data->next = NULL; in fcgi_hash_init()
205 b = b->next; in fcgi_hash_destroy()
211 p = p->next; in fcgi_hash_destroy()
229 while (h->data->next) { in fcgi_hash_clean()
248 p->next = h->data; in fcgi_hash_strndup()
272 p = p->next; in fcgi_hash_set()
278 b->next = h->buckets; in fcgi_hash_set()
307 *p = (*p)->next; in fcgi_hash_del()
310 p = &(*p)->next; in fcgi_hash_del()
[all …]
/PHP-5.5/ext/date/tests/
H A Dbug33415-1.phpt11 $strtotime_tstamp = strtotime("next Monday", $tStamp);
19 $strtotime_tstamp = strtotime("next Sunday", $tStamp);
/PHP-5.5/ext/spl/examples/
H A Ddbareader.inc52 * Move to next element.
56 function next() {
/PHP-5.5/ext/standard/tests/array/
H A Darray_pop_variation.phpt29 var_dump( next($mixed_array[1]) );
32 var_dump( next($mixed_array[1]) );
H A Dbug61058.phpt8 Warning: array_fill(): Cannot add element to the array as the next element is already occupied in %…
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dqueue.h31 datanode *prev, *next ; member
85 #define Q_Iter_Next_F(qi) (qi ? (q_iter)((node*)qi)->next : NULL)
/PHP-5.5/main/
H A Dalloca.c143 union hdr *next; /* For chaining headers. */ member
183 register header *np = hp->h.next;
211 ((header *) new)->h.next = last_alloca_header;
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_env.c150 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_env_init_child()
170 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_env_conf_wp()
207 for (wp = fpm_worker_all_pools; wp; wp = wp->next) { in fpm_env_init_main()

Completed in 50 milliseconds

12345678910>>...18