Home
last modified time | relevance | path

Searched refs:x (Results 176 – 200 of 1404) sorted by relevance

12345678910>>...57

/PHP-7.4/Zend/tests/
H A Dbug75420.13.phpt6 public function offsetExists($x) { $GLOBALS["obj"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug75420.9.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Darray_add_indirect.phpt6 $x = 1;
9 var_dump($ary['x']);
10 $x = 2;
11 var_dump($ary['x']);
H A Dbug34310.phpt2 Bug #34310 (foreach($arr as $c->d => $x) crashes)
16 foreach($arr as $x => $c->d)
18 echo "{$x} => {$c->d}\n";
22 foreach($arr as $c->d => $x)
24 echo "{$c->d} => {$x}\n";
H A Dbug75420.11.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug75420.14.phpt6 public function offsetExists($x) { $GLOBALS["obj"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug35470.phpt5 $x = array("test", "55");
6 global ${$x[0]};
7 ${$x[0]} = $x[1];
H A Dobjects_021.phpt14 return x();
18 return x();
22 return x();
26 function x() {
30 x()
H A Dbug75420.10.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug75420.12.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Ddynamic_call_to_ref_returning_function.phpt8 function &retRef($x) {
9 return $x;
15 $closure = function &($x) {
16 return $x;
24 function &method($x) {
25 return $x;
/PHP-7.4/ext/spl/tests/
H A DarrayObject_setFlags_basic2.phpt6 private $x = 'secret';
9 var_dump($c->x);
13 $c = new C(array('x'=>'public'));
17 var_dump($c->x);
22 var_dump($c->x);
29 Fatal error: Uncaught Error: Cannot access private property C::$x in %s:19
/PHP-7.4/ext/standard/tests/strings/
H A Dstr_replace_array_refs2.phpt17 $obj->prop = ['x' => 'property'];
18 $obj->prop = $closure($obj->prop, ['x'], 'a');
19 var_dump(str_replace(array_keys($obj->prop), $obj->prop, "x property"));
21 $array = ['x' => 'property'];
22 $array = $closure($array, ['x'], 'a');
23 var_dump(str_replace(array_keys($array), $array, "x property"));
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます109 >>>>&9 ulelong x \b, attributes 0x%x
111 #>>>&13 ulelong x \b, entries 0x%x
551 >>>0x08 ulelong x (0x%x)
3827 >>4 ubyte x id=0x%x
7480 >16 lelong x PC=0x%08x,
8529 >>>0 ubyte x (0x%x)
9910 #>8 ubelong x (0x%x)
11101 >>4 ubyte x : ID=0x%x
13336 >>56 ulelong x at 0x%x
20556 >>>>&0 leshort x 0x%x
[all …]
H A Dmagic109 >>>>&9 ulelong x \b, attributes 0x%x
111 #>>>&13 ulelong x \b, entries 0x%x
551 >>>0x08 ulelong x (0x%x)
3827 >>4 ubyte x id=0x%x
7480 >16 lelong x PC=0x%08x,
8529 >>>0 ubyte x (0x%x)
9910 #>8 ubelong x (0x%x)
11101 >>4 ubyte x : ID=0x%x
13336 >>56 ulelong x at 0x%x
20556 >>>>&0 leshort x 0x%x
[all …]
/PHP-7.4/ext/gd/tests/
H A Dbug79615.phpt10 for ($x = 0; $x < 3; $x++) {
12 imagesetpixel($im, $x, $y, imagecolorallocate($im, $x, $y, 0));
H A Dbug49600.phpt17 $x = imagettftext($image, 32, 0, 0, 0, $color, $font, $c);
19 if ( abs($x[0] - $y[0]) > 1
20 || abs($x[2] - $y[2]) > 1
21 || abs($x[4] - $y[4]) > 1
22 || abs($x[6] - $y[6]) > 1 ) {
24 var_dump($x);
/PHP-7.4/ext/simplexml/tests/
H A Dfeature55218.phpt11 $x = new SimpleXMLElement(
27 var_dump ( $x->getDocNamespaces(true) ) ;
28 var_dump( $x->person[0]->getDocNamespaces(true) );
29 var_dump( $x->person[1]->getDocNamespaces(true) );
33 var_dump( $x->getDocNamespaces(false) );
34 var_dump( $x->person[0]->getDocNamespaces(false) );
35 var_dump( $x->person[1]->getDocNamespaces(false) );
40 var_dump ( $x->getDocNamespaces(true, false) ) ;
41 var_dump( $x->person[0]->getDocNamespaces(true, false) );
42 var_dump( $x->person[1]->getDocNamespaces(true, false) );
[all …]
/PHP-7.4/ext/oci8/tests/
H A Dbug44206.phpt15 for ($x = 0; $x < 400; $x++)
17 $stmt = "select cursor (select $x from dual) a,
18 cursor (select $x from dual) b
23 echo "Exiting $x\n";
37 echo "Completed $x\n";
/PHP-7.4/ext/intl/collator/
H A Dcollator.c41 #define COLLATOR_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in collator_register_constants() argument
42 …define COLLATOR_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Collator_ce_ptr, ZEND_STRS… in collator_register_constants() argument
/PHP-7.4/ext/standard/tests/math/
H A Dmt_rand_value.phpt13 $x = 0;
15 $x ^= mt_rand();
17 echo $x.PHP_EOL;
27 $x = 0;
29 $x ^= mt_rand();
31 echo $x.PHP_EOL;
/PHP-7.4/ext/pcre/tests/
H A Dbug73612.phpt7 preg_match('/./', 'x', $obj);
11 preg_replace('/./', '', 'x', -1, $obj);
15 preg_replace_callback('/./', 'count', 'x', -1, $obj);
19 preg_replace_callback_array(['/./' => 'count'], 'x', -1, $obj);
23 preg_filter('/./', '', 'x', -1, $obj);
/PHP-7.4/ext/opcache/tests/
H A Dfe_fetch_dce.phpt12 $x = 1;
13 foreach ($a as $x) {
14 $x = 2.0;
16 var_dump($x);
/PHP-7.4/ext/xmlwriter/tests/
H A Dbug41287.phpt13 xmlwriter_start_element_ns($xw, 'test', 'test', 'urn:x-test:');
15 xmlwriter_write_element_ns($xw, null, 'bar', 'urn:x-test:', '');
26 $xw->startElementNS('test', 'test', 'urn:x-test:');
28 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
36 <test:test xmlns:test="urn:x-test:">
38 <bar xmlns="urn:x-test:"></bar>
43 <test:test xmlns:test="urn:x-test:">
45 <bar xmlns="urn:x-test:"></bar>
/PHP-7.4/ext/standard/
H A Dsha1.c118 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
119 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
120 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
121 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
125 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
129 #define W(i) ( tmp=x[(i-3)&15]^x[(i-8)&15]^x[(i-14)&15]^x[i&15], \
130 (x[i&15]=ROTATE_LEFT(tmp, 1)) )
261 SHA1Decode(x, block, 64);
264 FF(a, b, c, d, e, x[0]); /* 1 */
265 FF(e, a, b, c, d, x[1]); /* 2 */
[all …]

Completed in 247 milliseconds

12345678910>>...57