Home
last modified time | relevance | path

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

12345678910>>...28

/PHP-8.2/ext/date/tests/
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-8.2/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-8.2/ext/gmp/tests/
H A Dgmp_random_bits.phpt24 $start = microtime(true);
36 if (microtime(true) - $start > 0.5) {
/PHP-8.2/Zend/tests/fibers/
H A Dno-switch-gc.phpt24 $fiber->start();
34 #4 %sno-switch-gc.php(%d): Fiber->start()
/PHP-8.2/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-8.2/ext/dom/tests/
H A DDOMDocument_relaxNGValidateSource_error1.phpt13 <start>
19 </start>
H A DDOMDocument_relaxNGValidateSource_error2.phpt13 <start>
16 </start>
/PHP-8.2/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-8.2/Zend/
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-8.2/ext/opcache/jit/ir/
H A Dir_dump.c177 use_list = &ctx->use_lists[succ_bb->start]; in ir_dump_dessa_moves()
222 fprintf(f, "\tstart=%d\n", bb->start); in ir_dump_cfg()
370 IR_LIVE_POS_TO_REF(p->start), IR_LIVE_POS_TO_SUB_REF(p->start), in ir_dump_live_ranges()
374 if (ival->tmp_ref == IR_LIVE_POS_TO_REF(p->start)) { in ir_dump_live_ranges()
383 IR_LIVE_POS_TO_REF(p->start), IR_LIVE_POS_TO_SUB_REF(p->start), in ir_dump_live_ranges()
445 IR_LIVE_POS_TO_REF(p->start), IR_LIVE_POS_TO_SUB_REF(p->start), in ir_dump_live_ranges()
450 IR_LIVE_POS_TO_REF(p->start), IR_LIVE_POS_TO_SUB_REF(p->start), in ir_dump_live_ranges()
490 for (i = bb->start, insn = ctx->ir_base + i; i <= bb->end;) { in ir_dump_codegen()
649 if (ctx->ir_base[ctx->cfg_blocks[succ].start].op == IR_ENTRY) { in ir_dump_codegen()
654 IR_ASSERT(ctx->ir_base[ctx->cfg_blocks[fake_succ].start].op == IR_ENTRY); in ir_dump_codegen()
[all …]
/PHP-8.2/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-8.2/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-8.2/Zend/tests/stack_limit/
H A Dstack_limit_004.phpt32 $fiber->start();
37 $fiber->start();
/PHP-8.2/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-8.2/ext/standard/tests/general_functions/
H A Dget_included_files.phpt11 echo "\n-- List included files at start --\n";
26 -- List included files at start --
/PHP-8.2/ext/xml/tests/
H A Dxml011.phpt15 $xml = '<text>start<b /> This &amp; that</text>';
40 [value] => start
/PHP-8.2/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-->

Completed in 46 milliseconds

12345678910>>...28