Home
last modified time | relevance | path

Searched refs:start (Results 76 – 100 of 431) sorted by relevance

12345678910>>...18

/PHP-7.2/ext/dom/tests/
H A Dbug46335.phpt9 $start = 30;
18 $matched = $node->splitText($start);
27 $matched = $node->splitText($start);
H A DDOMDocument_relaxNGValidateSource_basic.phpt15 <start>
21 </start>
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg.init.d51 start()
104 start)
105 start
115 $0 start
/PHP-7.2/ext/standard/tests/strings/
H A Dstrcspn_variation5.phpt2 Test strcspn() function : usage variations - with heredoc strings with default start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
70 var_dump( strcspn($str,$mask) ); // with default start and len values
H A Dstrspn_variation5.phpt2 Test strspn() function : usage variations - with heredoc strings with default start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
70 var_dump( strspn($str,$mask) ); // with default start and len values
H A Dstrcspn_variation7.phpt2 Test strcspn() function : usage variations - with heredoc strings, varying start and default len ar…
5 /* Prototype : proto int strcspn(string str, string mask [, int start [,int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with heredoc string, varying start and default len arguments
16 echo "*** Testing strcspn() : with different start values ***\n";
79 // definig array of start values
91 // loop through each element of the arrays for str, mask and start arguments
97 foreach($start_array as $start) {
98 var_dump( strcspn($str,$mask,$start) ); // with default len value
107 *** Testing strcspn() : with different start values ***
H A Dstrspn_variation7.phpt2 Test strspn() function : usage variations - with heredoc strings, varying start and default len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with heredoc string, varying start and default len arguments
16 echo "*** Testing strspn() : with different start values ***\n";
78 // defining array of different start values
90 // loop through each element of the array for heredoc strings, mask strings and start values
97 foreach($start_array as $start) {
98 var_dump( strspn($str,$mask,$start) ); // with default len value
107 *** Testing strspn() : with different start values ***
/PHP-7.2/ext/gd/libgd/
H A Dgdhelpers.c18 char *start; in gd_strtok_r() local
31 start = s; in gd_strtok_r()
/PHP-7.2/Zend/tests/
H A Dbug51176.phpt7 public function start()
26 $foo->start();
H A Dbug43450.phpt21 $start = memory_get_usage() / 1024;
29 if ($start + 16 < $end) {
H A Dbug63741.phpt33 function start()
38 start();
/PHP-7.2/ext/date/tests/
H A Dbug75002.phpt10 $start=new DateTime( '2012-08-01' );
12 foreach (new aaa($start) as $y) {
H A DDatePeriod_properties2.phpt13 "start",
39 Writing to DatePeriod->start is unsupported
40 Retrieval of DatePeriod->start for modification is unsupported
/PHP-7.2/Zend/
H A Dzend_virtual_cwd.c758 return start; in tsrm_realpath_r()
779 return start ? start : len; in tsrm_realpath_r()
1160 j = start; in tsrm_realpath_r()
1223 int start = 1; in virtual_file_ex() local
1249 start = 0; in virtual_file_ex()
1317 start = 2; in virtual_file_ex()
1322 resolved_path[start] = toupper(resolved_path[start]); in virtual_file_ex()
1323 start++; in virtual_file_ex()
1330 resolved_path[start] = toupper(resolved_path[start]); in virtual_file_ex()
1331 start++; in virtual_file_ex()
[all …]
/PHP-7.2/ext/zip/lib/
H A Dzip_source_win32handle.c51 zip_source_win32handle(zip_t *za, HANDLE h, zip_uint64_t start, zip_int64_t len) in zip_source_win32handle() argument
56 return zip_source_win32handle_create(h, start, len, &za->error); in zip_source_win32handle()
61 zip_source_win32handle_create(HANDLE h, zip_uint64_t start, zip_int64_t length, zip_error_t *error) in zip_source_win32handle_create() argument
68 return _zip_source_win32_handle_or_name(NULL, h, start, length, 1, NULL, NULL, error); in zip_source_win32handle_create()
99 ctx->start = start; in _zip_source_win32_handle_or_name()
100 ctx->end = (len < 0 ? 0 : start + (zip_uint64_t)len); in _zip_source_win32_handle_or_name()
202 if (ctx->closep && ctx->start > 0) { in _win32_read_file()
203 if (_zip_seek_win32_u(ctx->h, ctx->start, SEEK_SET, &ctx->error) < 0) { in _win32_read_file()
207 ctx->current = ctx->start; in _win32_read_file()
299 …if (new_current < 0 || (zip_uint64_t)new_current < ctx->start || (ctx->end != 0 && (zip_uint64_t)n… in _win32_read_file()
[all …]
/PHP-7.2/ext/mbstring/oniguruma/src/
H A Dutf16_be.c195 utf16be_left_adjust_char_head(const UChar* start, const UChar* s) in utf16be_left_adjust_char_head() argument
197 if (s <= start) return (UChar* )s; in utf16be_left_adjust_char_head()
199 if ((s - start) % 2 == 1) { in utf16be_left_adjust_char_head()
203 if (UTF16_IS_SURROGATE_SECOND(*s) && s > start + 1) in utf16be_left_adjust_char_head()
H A Dutf16_le.c204 utf16le_left_adjust_char_head(const UChar* start, const UChar* s) in utf16le_left_adjust_char_head() argument
206 if (s <= start) return (UChar* )s; in utf16le_left_adjust_char_head()
208 if ((s - start) % 2 == 1) { in utf16le_left_adjust_char_head()
212 if (UTF16_IS_SURROGATE_SECOND(*(s+1)) && s > start + 1) in utf16le_left_adjust_char_head()
H A Deuc_tw.c125 euctw_left_adjust_char_head(const UChar* start, const UChar* s) in euctw_left_adjust_char_head() argument
133 if (s <= start) return (UChar* )s; in euctw_left_adjust_char_head()
136 while (!euctw_islead(*p) && p > start) p--; in euctw_left_adjust_char_head()
H A Dbig5.c140 big5_left_adjust_char_head(const UChar* start, const UChar* s) in big5_left_adjust_char_head() argument
145 if (s <= start) return (UChar* )s; in big5_left_adjust_char_head()
149 while (p > start) { in big5_left_adjust_char_head()
H A Deuc_kr.c119 euckr_left_adjust_char_head(const UChar* start, const UChar* s) in euckr_left_adjust_char_head() argument
127 if (s <= start) return (UChar* )s; in euckr_left_adjust_char_head()
130 while (!euckr_islead(*p) && p > start) p--; in euckr_left_adjust_char_head()
/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_cfg.c110 blocks[start].flags = ZEND_BB_START; in zend_mark_reachable_blocks()
128 b = blocks + block_map[live_range->start]; in zend_mark_reachable_blocks()
136 && b->start > 0 in zend_mark_reachable_blocks()
140 b->start++; in zend_mark_reachable_blocks()
176 op_array->try_catch_array[j].try_op = b->start; in zend_mark_reachable_blocks()
247 int start = 0; in zend_cfg_remark_reachable_blocks() local
251 start = i; in zend_cfg_remark_reachable_blocks()
262 zend_mark_reachable_blocks(op_array, cfg, start); in zend_cfg_remark_reachable_blocks()
456 BB_START(op_array->live_range[j].start); in zend_build_cfg()
486 blocks[0].start = 0; in zend_build_cfg()
[all …]
H A Dblock_pass.c99 && b->start > 0 in strip_leading_nops()
103 b->start++; in strip_leading_nops()
118 i = j = b->start + 1; in strip_nops()
119 while (i < b->start + b->len) { in strip_nops()
126 if (i + 1 < b->start + b->len in strip_nops()
136 b->len = j - b->start; in strip_nops()
172 opline = op_array->opcodes + block->start; in zend_optimize_block()
930 b->start = opline - new_opcodes; in assemble_code_blocks()
1060 uint32_t start_op = blocks[cfg->map[op_array->live_range[i].start]].start; in assemble_code_blocks()
1118 cfg->map[cfg->blocks[n].start] = n; in assemble_code_blocks()
[all …]
/PHP-7.2/ext/standard/tests/http/
H A Dbug76342.phpt22 $start = microtime(true);
24 $diff = microtime(true) - $start;
/PHP-7.2/sapi/fpm/
H A Dinit.d.php-fpm.in54 start)
130 $0 start
/PHP-7.2/ext/intl/grapheme/
H A Dgrapheme_string.c382 int32_t start = 0; in PHP_FUNCTION() local
403 start = (int32_t) lstart; in PHP_FUNCTION()
455 if ( start < 0 ) { in PHP_FUNCTION()
467 while ( start ) { in PHP_FUNCTION()
474 start += iter_val; in PHP_FUNCTION()
477 if ( 0 != start || sub_str_start_pos >= ustr_len ) { in PHP_FUNCTION()
781 int32_t start = 0; in PHP_FUNCTION() local
832 start = (int32_t) lstart; in PHP_FUNCTION()
834 pstr = str + start; in PHP_FUNCTION()
860 ZVAL_LONG(next, start+nsize); in PHP_FUNCTION()
[all …]

Completed in 46 milliseconds

12345678910>>...18