Home
last modified time | relevance | path

Searched refs:start (Results 126 – 150 of 423) sorted by relevance

12345678910>>...17

/PHP-7.1/ext/curl/tests/
H A Dcurl_basic_006.phpt19 // start testing
25 ob_start(); // start output buffering
H A Dbug55767.phpt18 // start testing
24 ob_start(); // start output buffering
H A Dcurl_basic_003.phpt19 // start testing
25 ob_start(); // start output buffering
/PHP-7.1/ext/xmlwriter/tests/
H A DOO_009.phpt21 $xw->writeComment('start PI');
41 <!--start PI-->
/PHP-7.1/ext/phar/tests/
H A Dphar_createdefaultstub.phpt256 $start = 4 + $s[1];
261 $start += 4;
263 $start += $len[1];
269 $start += 24 + $ret['m'][$savepath][5];
550 $start = 4 + $s[1];
555 $start += 4;
557 $start += $len[1];
563 $start += 24 + $ret['m'][$savepath][5];
852 $start = 4 + $s[1];
857 $start += 4;
[all …]
H A Dphar_setdefaultstub.phpt276 $start = 4 + $s[1];
281 $start += 4;
283 $start += $len[1];
289 $start += 24 + $ret['m'][$savepath][5];
571 $start = 4 + $s[1];
576 $start += 4;
578 $start += $len[1];
584 $start += 24 + $ret['m'][$savepath][5];
866 $start = 4 + $s[1];
871 $start += 4;
[all …]
/PHP-7.1/ext/snmp/tests/
H A DREADME40 - Launch snmpd (service snmpd start or /etc/init.d/snmpd start).
41 Alternatively you can start snmpd daemon using following command line:
/PHP-7.1/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc57 * @var string Data written at the start of the ZIP file
60 var $start = "";
272 …$this->start .= ($file = $this->getFileEntry($compmethod, $mtime, $crc32, $complength, $uncompleng…
283 $write = $this->start . $this->central;
288 $this->offset, strlen($this->start),
294 $this->offset, strlen($this->start),
300 $this->offset, strlen($this->start),
306 $this->offset, strlen($this->start),
312 $this->offset, strlen($this->start) - 3,
318 $this->offset - 5, strlen($this->start),
[all …]
/PHP-7.1/ext/mbstring/oniguruma/
H A Dregexec.c3052 start: in onig_match()
3071 goto start; in onig_match()
3366 start: in onig_search()
3385 goto start; in onig_search()
3405 if (start > end || start < str) goto mismatch_no_msa; in onig_search()
3463 range = start + 1; in onig_search()
3465 range = start; in onig_search()
3475 start = str; in onig_search()
3492 if (start < end) in onig_search()
3493 start = onigenc_get_right_adjust_char_head(reg->enc, str, start); in onig_search()
[all …]
/PHP-7.1/tests/func/
H A D003.phpt46 function factorial2($start, $n)
48 if ($n<=$start) {
49 return $start;
51 return factorial2($start,$n-1)*$n;
/PHP-7.1/ext/mbstring/oniguruma/enc/
H A Deuc_jp.c147 left_adjust_char_head(const UChar* start, const UChar* s) in left_adjust_char_head() argument
155 if (s <= start) return (UChar* )s; in left_adjust_char_head()
158 while (!eucjp_islead(*p) && p > start) p--; in left_adjust_char_head()
H A Dsjis.c179 left_adjust_char_head(const UChar* start, const UChar* s) in left_adjust_char_head() argument
184 if (s <= start) return (UChar* )s; in left_adjust_char_head()
188 while (p > start) { in left_adjust_char_head()
/PHP-7.1/ext/mbstring/tests/
H A Dmb_substr_variation1.phpt10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
22 $start = 0;
97 var_dump( mb_substr($input, $start, $length));
H A Dmb_substr_variation4.phpt2 Test mb_substr() function : usage variations - pass different integers to $start arg
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Test how mb_substr() behaves when passed a range of integers as $start argument
H A Dmb_substr_variation6.phpt2 Test mb_substr() function : usage variations - pass different integers to $start arg
10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
16 * Test how mb_substr() behaves when passed a range of integers as $start argument
/PHP-7.1/ext/standard/tests/general_functions/
H A Dget_included_files.phpt14 echo "\n-- List included files at start --\n";
33 -- List included files at start --
/PHP-7.1/ext/standard/tests/strings/
H A Dstrcspn_variation1.phpt5 /* 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)
22 $start = 1;
96 var_dump( strcspn($value,$mask,$start) ); // with default len value
97 var_dump( strcspn($value,$mask,$start,$len) ); // with all args
H A Dstrcspn_variation2.phpt5 /* 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)
21 $start = 1;
95 var_dump( strcspn($str,$value,$start) ); // with default len value
96 var_dump( strcspn($str,$value,$start,$len) ); // with all args
H A Dstrspn_variation1.phpt5 /* 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)
22 $start = 1;
96 var_dump( strspn($value,$mask,$start) ); // with default len value
97 var_dump( strspn($value,$mask,$start,$len) ); // with all args
H A Dstrspn_variation2.phpt5 /* 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)
21 $start = 1;
95 var_dump( strspn($str,$value,$start) ); // with default len value
96 var_dump( strspn($str,$value,$start,$len) ); // with all args
/PHP-7.1/ext/phar/tests/cache_list/files/
H A Dnophar.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
H A Dopenssl.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
/PHP-7.1/ext/phar/tests/files/
H A Dinclude_path2.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
H A Dnophar.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
H A Dopenssl.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];

Completed in 52 milliseconds

12345678910>>...17