Home
last modified time | relevance | path

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

12345678910>>...14

/PHP-5.5/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-5.5/ext/mbstring/tests/
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-5.5/ext/mbstring/oniguruma/enc/
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()
H A Dutf8.c269 left_adjust_char_head(const UChar* start, const UChar* s) in left_adjust_char_head() argument
273 if (s <= start) return (UChar* )s; in left_adjust_char_head()
276 while (!utf8_islead(*p) && p > start) p--; in left_adjust_char_head()
/PHP-5.5/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-5.5/ext/phar/tests/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 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 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-5.5/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-5.5/ext/standard/tests/file/
H A Dfseek_variation3.phpt22 echo "--- fseek beyond start of file ---\n";
44 --- fseek beyond start of file ---
/PHP-5.5/ext/curl/tests/
H A Dcurl_basic_017.phpt18 // start testing
28 ob_start(); // start output buffering
H A Dcurl_basic_018.phpt18 // start testing
28 ob_start(); // start output buffering
/PHP-5.5/ext/standard/tests/array/
H A Dbug61058.phpt2 Bug #61058 (array_fill leaks if start index is PHP_INT_MAX)
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c876 int start; member
1242 pc.start = 0; in mbfl_substr_count()
1277 int start; member
1323 start = from; in mbfl_substr()
1326 start *= 2; in mbfl_substr()
1329 start *= 4; in mbfl_substr()
1333 start = 0; in mbfl_substr()
1341 start = n; in mbfl_substr()
1367 start = len; in mbfl_substr()
1370 start = 0; in mbfl_substr()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Doniguruma.h165 OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);
279 #define ONIGENC_LEFT_ADJUST_CHAR_HEAD(enc,start,s) \ argument
280 (enc)->left_adjust_char_head(start, s)
285 #define ONIGENC_STEP_BACK(enc,start,s,n) \ argument
286 onigenc_step_back((enc),(start),(s),(n))
334 OnigUChar* onigenc_step_back P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, int …
347 …t_right_adjust_char_head_with_prev P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* …
349 OnigUChar* onigenc_get_prev_char_head P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar…
351 OnigUChar* onigenc_get_left_adjust_char_head P_((OnigEncoding enc, const OnigUChar* start, const On…
353 OnigUChar* onigenc_get_right_adjust_char_head P_((OnigEncoding enc, const OnigUChar* start, const O…
[all …]
/PHP-5.5/ext/ereg/tests/
H A D006.phpt2 Test ereg_replace of start-of-line
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug65806.phpt56 echo "start serialize/unserialize" . PHP_EOL;
79 start serialize/unserialize
/PHP-5.5/ext/iconv/tests/
H A Diconv_substr_error1.phpt24 $start = 10;
28 var_dump( iconv_substr($str, $start, $length, $encoding, $extra_arg) );
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fork.phpt92 if (!mysqli_query($plink, sprintf($sql, 'start')))
107 $start = time();
121 } while ((time() - $start) < 5);
137 $start = time();
149 case 'start':
199 } while (((time() - $start) < 5) && ($num_rows < 3));
244 child start
H A Dmysqli_fetch_array_many_rows.phpt14 $start = microtime(true);
15 for ($id = 100, $start = microtime(true); (microtime(true) - $start) < 5; $id++) {

Completed in 68 milliseconds

12345678910>>...14