Home
last modified time | relevance | path

Searched refs:start (Results 176 – 200 of 688) sorted by relevance

12345678910>>...28

/php-src/ext/date/tests/
H A DDatePeriod_serialize-001.phpt26 ["start"]=>
72 string(%d) "O:10:"DatePeriod":7:{s:5:"start";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2012-07-0…
77 ["start"]=>
124 ["start"]=>
H A DDatePeriod_serialize-002.phpt2 Test DatePeriod::__serialize and DatePeriod::__unserialize (start/end)
34 ["start"]=>
87 string(%d) "O:10:"DatePeriod":7:{s:5:"start";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"1978-12-2…
92 ["start"]=>
146 ["start"]=>
H A DDatePeriod_serialize-003.phpt2 Test DatePeriod::__serialize and DatePeriod::__unserialize (start/end)
34 ["start"]=>
87 string(%d) "O:10:"DatePeriod":7:{s:5:"start";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"1978-12-2…
92 ["start"]=>
146 ["start"]=>
H A DDatePeriod_serialize-004.phpt2 Test DatePeriod::__serialize and DatePeriod::__unserialize (start/recurrences)
39 ["start"]=>
95 string(%d) "O:10:"DatePeriod":7:{s:5:"start";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"1978-12-2…
100 ["start"]=>
154 ["start"]=>
H A Ddate-time-modify-times.phpt25 foreach ( $tests as $start => $data )
29 echo date_create( $start )
H A Ddate_period_set_state1.phpt8 "start" => new DateTime("2022-07-14 12:00:00", new DateTimeZone("UTC")),
23 ["start"]=>
/php-src/ext/dom/lexbor/patches/
H A D0001-Expose-line-and-column-information-for-use-in-PHP.patch49 tkz->pos = tkz->start;
50 tkz->end = tkz->start + LXB_HTML_TKZ_TEMP_SIZE;
56 tkz_to->start = tkz_from->start;
58 tkz_to->pos = tkz_to->start;
78 + * Continuation bytes start with 0b10XXXXXX so we can skip those to only get the s…
111 tkz->pos = tkz->start; \
/php-src/ext/gmp/tests/
H A Dgmp_random_bits.phpt24 $start = microtime(true);
36 if (microtime(true) - $start > 0.5) {
/php-src/ext/standard/tests/strings/
H A Dstripos_error.phpt14 echo "\n-- Offset before the start of the string --\n";
29 -- Offset before the start of the string --
H A Dsubstr_replace_error.phpt13 echo "\n-- Testing substr_replace() function with start and length as arrays but string not--\n";
29 -- Testing substr_replace() function with start and length as arrays but string not--
H A Dstrcspn_variation10.phpt2 Test strcspn() function : usage variations - with varying mask & default start and len args
6 * Testing strcspn() : with varying mask and default start and len arguments
9 echo "*** Testing strcspn() : with different mask strings and default start and len arguments ***\n…
60 *** Testing strcspn() : with different mask strings and default start and len arguments ***
/php-src/ext/dom/tests/
H A DDOMDocument_relaxNGValidateSource_error1.phpt13 <start>
19 </start>
H A DDOMDocument_relaxNGValidateSource_error2.phpt13 <start>
16 </start>
/php-src/Zend/tests/fibers/
H A Dno-switch-gc.phpt24 $fiber->start();
34 #4 %sno-switch-gc.php(%d): Fiber->start()
/php-src/ext/pdo_firebird/
H A Dfirebird_driver.c304 const char* start = p; in php_firebird_preprocess() local
307 const char* i = start; in php_firebird_preprocess()
321 start = i; in php_firebird_preprocess()
373 strncat(sql_out, start, p - start); in php_firebird_preprocess()
377 start = p; in php_firebird_preprocess()
386 l = p - start; in php_firebird_preprocess()
393 strncpy(pname, start, l); in php_firebird_preprocess()
412 strncat(sql_out, start, p - start); in php_firebird_preprocess()
421 l = p - start; in php_firebird_preprocess()
431 strncat(sql_out, start, end - start); in php_firebird_preprocess()
[all …]
/php-src/Zend/
H A Dzend_call_stack.c176 uintptr_t start, end, prev_end = 0; in zend_call_stack_get_linux_proc_maps() local
216 …while (fgets(buffer, sizeof(buffer), f) && sscanf(buffer, "%" SCNxPTR "-%" SCNxPTR, &start, &end) … in zend_call_stack_get_linux_proc_maps()
217 if (start <= addr_on_stack && end >= addr_on_stack) { in zend_call_stack_get_linux_proc_maps()
605 char *start, *end; in zend_call_stack_get_netbsd_vm() local
626 start = (char *)*ptr; in zend_call_stack_get_netbsd_vm()
627 end = start + len; in zend_call_stack_get_netbsd_vm()
629 while (start < end) { in zend_call_stack_get_netbsd_vm()
630 entry = (struct kinfo_vmentry *)start; in zend_call_stack_get_netbsd_vm()
636 start += sizeof(struct kinfo_vmentry); in zend_call_stack_get_netbsd_vm()
H A Dzend_gc.h117 zval *start; member
154 *table = gc_buffer->start; in zend_get_gc_buffer_use()
155 *n = gc_buffer->cur - gc_buffer->start; in zend_get_gc_buffer_use()
/php-src/ext/intl/transliterator/
H A Dtransliterator_methods.c274 zend_long start = 0, in PHP_FUNCTION() local
293 Z_PARAM_LONG(start) in PHP_FUNCTION()
316 …} else if(zend_parse_parameters( ZEND_NUM_ARGS(), "s|ll", &str, &str_len, &start, &limit) == FAILU… in PHP_FUNCTION()
325 if (start < 0) { in PHP_FUNCTION()
330 if (limit != -1 && start > limit) { in PHP_FUNCTION()
344 if( ( start > ustr_len ) || (( limit != -1 ) && (limit > ustr_len ) ) ) in PHP_FUNCTION()
369 utrans_transUChars( to->utrans, uresult, &uresult_len, capacity, (int32_t) start, in PHP_FUNCTION()
/php-src/ext/curl/tests/
H A Dbug55767.phpt10 // start testing
16 ob_start(); // start output buffering
H A Dcurl_basic_003.phpt13 // start testing
19 ob_start(); // start output buffering
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_004.phpt32 $fiber->start();
37 $fiber->start();
/php-src/ext/dom/lexbor/lexbor/core/
H A Dprint.c104 lxb_char_t *end, *start; in lexbor_vsprintf() local
108 start = dst; in lexbor_vsprintf()
167 return dst - start; in lexbor_vsprintf()
/php-src/ext/xmlwriter/tests/
H A D009.phpt17 xmlwriter_write_comment($xw, 'start PI');
37 <!--start PI-->
H A DOO_009.phpt18 $xw->writeComment('start PI');
38 <!--start PI-->
/php-src/ext/xml/tests/
H A Dxml011.phpt15 $xml = '<text>start<b /> This &amp; that</text>';
40 [value] => start

Completed in 36 milliseconds

12345678910>>...28