Home
last modified time | relevance | path

Searched refs:start (Results 101 – 125 of 346) sorted by relevance

12345678910>>...14

/PHP-5.5/ext/curl/tests/
H A Dcurl_basic_012.phpt18 // start testing
24 ob_start(); // start output buffering
H A Dcurl_basic_013.phpt18 // start testing
24 ob_start(); // start output buffering
H A Dcurl_basic_001.phpt18 // start testing
24 ob_start(); // start output buffering
H A Dcurl_basic_002.phpt19 // start testing
25 ob_start(); // start output buffering
H A Dcurl_basic_005.phpt19 // start testing
25 ob_start(); // start output buffering
H A Dcurl_setopt_basic002.phpt14 // start testing
33 ob_start(); // start output buffering
H A Dcurl_basic_004.phpt19 // start testing
25 ob_start(); // start output buffering
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-5.5/ext/xml/tests/
H A Dxml011.phpt17 $xml = '<text>start<b /> This &amp; that</text>';
42 [value] => start
/PHP-5.5/ext/iconv/tests/
H A Diconv_substr_error2.phpt22 $start = 1;
26 var_dump( iconv_substr($str, $start, $length, $encoding));
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator_methods.c308 long start = 0, in PHP_FUNCTION() local
321 &arg1, &str, &str_len, &start, &limit ) == FAILURE ) in PHP_FUNCTION()
357 &str, &str_len, &start, &limit ) == FAILURE ) in PHP_FUNCTION()
372 if( start < 0 || ((limit != -1 ) && (start > limit )) ) in PHP_FUNCTION()
390 if( ( start > ustr_len ) || (( limit != -1 ) && (limit > ustr_len ) ) ) in PHP_FUNCTION()
416 utrans_transUChars( to->utrans, uresult, &uresult_len, capacity, (int32_t) start, in PHP_FUNCTION()
/PHP-5.5/ext/xmlwriter/tests/
H A D009.phpt21 xmlwriter_write_comment($xw, 'start PI');
41 <!--start PI-->
H A DOO_009.phpt21 $xw->writeComment('start PI');
41 <!--start PI-->
/PHP-5.5/ext/zip/lib/
H A Dzip_source_zip.c55 int flags, zip_uint64_t start, zip_int64_t len) in zip_source_zip() argument
80 if (start == 0 && len == -1 && (flags & ZIP_FL_RECOMPRESS) == 0) in zip_source_zip()
100 p->off = start; in zip_source_zip()
H A Dzip_fopen_index_encrypted.c54 zip_uint64_t start; in zip_fopen_index_encrypted() local
104 if ((start=_zip_file_get_offset(za, fileno)) == 0) in zip_fopen_index_encrypted()
112 if ((src=_zip_source_file_or_p(za, NULL, za->zp, start, st.comp_size, in zip_fopen_index_encrypted()
/PHP-5.5/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-5.5/ext/mbstring/oniguruma/
H A Dregexec.c3057 start: in onig_match()
3076 goto start; in onig_match()
3362 start: in onig_search()
3381 goto start; in onig_search()
3401 if (start > end || start < str) goto mismatch_no_msa; in onig_search()
3459 range = start + 1; in onig_search()
3461 range = start; in onig_search()
3471 start = str; in onig_search()
3488 if (start < end) in onig_search()
3489 start = onigenc_get_right_adjust_char_head(reg->enc, str, start); in onig_search()
[all …]
/PHP-5.5/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-5.5/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-5.5/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-5.5/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));
/PHP-5.5/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()

Completed in 100 milliseconds

12345678910>>...14