Home
last modified time | relevance | path

Searched refs:ret (Results 376 – 387 of 387) sorted by last modified time

1...<<111213141516

/PHP-7.1/ext/phar/tests/cache_list/files/
H A Dopenssl.phar221 $ret['c'] = 0;
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
229 $ret['m'][$savepath][3] = sprintf('%u', $ret['m'][$savepath][3]
231 $ret['m'][$savepath][7] = $o;
232 $o += $ret['m'][$savepath][2];
233 $start += 24 + $ret['m'][$savepath][5];
234 $ret['c'] |= $ret['m'][$savepath][4] & self::MASK;
236 return $ret;
/PHP-7.1/ext/pcre/tests/
H A Dbug52732.phpt7 $ret = preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');
9 var_dump($ret);
H A Dbug73483.phpt9 $ret = preg_replace($regex, "okey", $matches[0]);
11 return $ret;
/PHP-7.1/ext/mysqli/tests/
H A D071.phpt18 $ret = $mysql->kill($mysql->thread_id);
20 if ($ret !== true){
21 printf("[001] Expecting boolean/true got %s/%s\n", gettype($ret), var_export($ret, true));
27 if ($ret !== true){
28 …printf("[001] Expecting boolean/true got %s/%s @\n", gettype($ret), var_export($ret, true), $versi…
31 if ($ret !== false){
32 …printf("[001] Expecting boolean/false got %s/%s @\n", gettype($ret), var_export($ret, true), $vers…
47 if ($ret !== true){
48 printf("[002] Expecting boolean/true got %s/%s\n", gettype($ret), var_export($ret, true));
54 if ($ret !== true){
[all …]
/PHP-7.1/ext/mbstring/libmbfl/filters/
H A Dmbfilter_tl_jisx0201_jisx0208.c273 int ret, n; in mbfl_filt_tl_jisx0201_jisx0208_flush() local
276 ret = 0; in mbfl_filt_tl_jisx0201_jisx0208_flush()
280 ret = (*filt->output_function)(0x3000 + hankana2zenkana_table[n], filt->data); in mbfl_filt_tl_jisx0201_jisx0208_flush()
282 ret = (*filt->output_function)(0x3000 + hankana2zenhira_table[n], filt->data); in mbfl_filt_tl_jisx0201_jisx0208_flush()
291 return ret; in mbfl_filt_tl_jisx0201_jisx0208_flush()
/PHP-7.1/ext/intl/tests/
H A Dresourcebundle.inc6 $ret = "NULL\n";
9 $ret = print_r( $res, true ). "\n";
11 return $ret . sprintf( "%5d: %s\n", intl_get_error_code(), intl_get_error_message() );
/PHP-7.1/ext/gd/libgd/
H A Dgdxpm.c28 int ret; in gdImageCreateFromXpm() local
30 ret = XpmReadFileToXpmImage(filename, &image, &info); in gdImageCreateFromXpm()
31 if (ret != XpmSuccess) { in gdImageCreateFromXpm()
/PHP-7.1/ext/filter/tests/
H A D035.phpt11 $ret = filter_input(INPUT_GET, 'a', FILTER_VALIDATE_INT);
12 var_dump($ret);
14 $ret = filter_input(INPUT_GET, 'a', FILTER_VALIDATE_INT, array('flags'=>FILTER_FLAG_ALLOW_OCTAL));
15 var_dump($ret);
17 $ret = filter_input(INPUT_GET, 'ar', FILTER_VALIDATE_INT, array('flags'=>FILTER_REQUIRE_ARRAY));
18 var_dump($ret);
20 $ret = filter_input(INPUT_GET, 'ar', FILTER_VALIDATE_INT, array('flags'=>FILTER_FLAG_ALLOW_OCTAL|FI…
21 var_dump($ret);
H A D045.phpt8 $ret = filter_var("0xff", FILTER_VALIDATE_INT, $a);
9 echo ($ret === 255 && $a["options"]["min_range"] === "0")?"ok\n":"bug\n";
10 echo ($ret === 255 && $a["options"]["max_range"] === "1024")?"ok\n":"bug\n";
11 echo ($ret === 255 && is_string($a["flags"]) && $a["flags"] == FILTER_FLAG_ALLOW_HEX)?"ok\n":"bug\n…
13 $ret = filter_var("0xff", FILTER_VALIDATE_INT, $a);
14 echo ($ret === 255 && is_string($a) && $a == FILTER_FLAG_ALLOW_HEX)?"ok\n":"bug\n";
16 $ret = filter_var_array(array("test"=>"0xff"), $a);
17 echo ($ret["test"] === 255 && is_string($a["test"]["filter"]) && $a["test"]["filter"] == FILTER_VAL…
18 echo ($ret["test"] === 255 && is_string($a["test"]["flags"]) && $a["test"]["flags"] == FILTER_FLAG_…
20 $ret = filter_var_array(array("test"=>"255"), $a);
[all …]
/PHP-7.1/ext/dom/tests/
H A Dbug28721.phpt66 $ret = $p->appendChild($t1);
71 echo "t1 == ret: ";
72 var_dump( $t1 === $ret );
87 $ret = $d->insertBefore($t4, $t3);
184 t1 == ret: bool(true)
H A DDOMDocument_encoding_basic.phpt24 $ret = $dom->encoding = 'NYPHP DOMinatrix';
25 echo "Adding invalid encoding: $ret\n";
27 $ret = $dom->encoding = 'ISO-8859-1';
28 echo "Adding ISO-8859-1 encoding: $ret\n";
31 $ret = $dom->encoding = 'UTF-8';
32 echo "Adding UTF-8 encoding: $ret\n";
35 $ret = $dom->encoding = 'UTF-16';
36 echo "Adding UTF-16 encoding: $ret\n";
/PHP-7.1/Zend/tests/
H A Ddynamic_call_to_ref_returning_function.phpt2 When performing a dynamic call to a ret-by-ref function, the reference should be unwrapped

Completed in 26 milliseconds

1...<<111213141516