Home
last modified time | relevance | path

Searched refs:x (Results 151 – 175 of 1404) sorted by relevance

12345678910>>...57

/PHP-7.4/ext/spl/tests/
H A Dobserver_009.phpt13 echo ' x ';
21 echo ' x ';
28 Count storage A: 2 x x
29 Count storage B: 2 x x
/PHP-7.4/Zend/tests/
H A Dns_034.phpt10 function f1($x=Foo::C) {
11 echo $x;
13 function f2($x=B\Foo::C) {
14 echo $x;
16 function f3($x=\A\Foo::C) {
17 echo $x;
H A Dunset_cv10.phpt6 $x = "ok\n";
7 echo $x;
8 $a->offsetUnset('x');
9 echo $x;
15 Notice: Undefined variable: x in %sunset_cv10.php on line %d
H A Dclosure_call.phpt7 public $x = 0;
10 return $this->x;
19 $foobar->x = 3;
30 return $this->x;
34 $elePHPant->x = 7;
41 return $this->x * $z;
49 private $x = 3;
53 var_dump($this->x);
H A Dbug75420.15.phpt6 public function offsetExists($x) { }
7 public function offsetGet($x) { }
8 public function offsetSet($x, $y) { $GLOBALS["name"] = 24; var_dump($x); }
9 public function offsetUnset($x) { }
H A Dindirect_reference_this.phpt6 function f($x){var_dump($$x);}
8 $x = new X;
9 $x->f("this");
H A Dbug72335.phpt8 $x = (1<<53)+1;
10 $x = 1.0 * ($x - (1<<53));
12 return $x;
H A Dbug71539_1.phpt5 $x = (object)['a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5,'f'=>6,'g'=>7];
6 $x->h =& $x->i;
7 $x->h = 42;
8 var_dump($x);
/PHP-7.4/ext/reflection/tests/
H A Dbug61388.phpt5 $x = new ArrayObject();
6 $x[0] = 'test string 2';
7 $x['test'] = 'test string 3';
8 $reflObj = new ReflectionObject($x);
11 $x = (object)array("a", "oo" => "b");
12 $reflObj = new ReflectionObject($x);
/PHP-7.4/ext/mysqli/tests/
H A Dbug36802.phpt18 $x[0] = @$mysql->set_charset('utf8');
20 $x[0] = false;
22 $x[1] = @$mysql->query("SELECT 'foo' FROM DUAL");
25 $x[2] = ($mysql->client_version > 0);
26 $x[3] = $mysql->errno;
29 var_dump($x);
/PHP-7.4/ext/intl/tests/
H A Dbug71020.phpt9 for($x=0;$x<0xbb;$x++)
10 …[substr(md5(microtime()),rand(0,26),9) . strval($x)]= substr(md5(microtime()),rand(0,26),9) . strv…
H A Dspoofchecker_006.phpt10 $x = new Spoofchecker();
11 var_dump($x->isSuspicious("http://www.payp\u{0430}l.com"));
12 var_dump($x->isSuspicious("\u{041F}aypal.com"));
15 $x = new Spoofchecker();
16 $x->setAllowedLocales("gr_GR");
17 var_dump($x->isSuspicious("NAPKIN PEZ"));
18 var_dump($x->isSuspicious("napkin pez"));
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_103.phpt9 $x = new C;
10 $x->a = 1;
11 unset($x->a);
12 $x->a += 2;
13 var_dump($x);
/PHP-7.4/win32/
H A Dparam.h18 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
19 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
/PHP-7.4/ext/hash/
H A Dhash_ripemd.c142 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
143 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
144 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
146 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
184 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument
185 #define ROLSS(j, x) (((x) << SS[j]) | ((x) >> (32 - SS[j]))) argument
186 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument
249 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD128Transform()
347 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD256Transform()
446 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD160Transform()
[all …]
/PHP-7.4/Zend/
H A Dzend_build.h22 #define ZEND_TOSTR_(x) #x argument
23 #define ZEND_TOSTR(x) ZEND_TOSTR_(x) argument
H A Dzend_strtod_int.h130 #define ACQUIRE_DTOA_LOCK(x) \ argument
131 if (0 == x) { \
133 } else if (1 == x) { \
137 #define FREE_DTOA_LOCK(x) \ argument
138 if (0 == x) { \
140 } else if (1 == x) { \
/PHP-7.4/tests/classes/
H A Diterators_007.phpt8 public $x = 0;
10 …public function rewind() { if ($this->x == 0) throw new Exception(__METHOD__); reset($this->arr…
11 …public function current() { if ($this->x == 1) throw new Exception(__METHOD__); return current($…
12 …public function key() { if ($this->x == 2) throw new Exception(__METHOD__); return key($this…
13 …public function next() { if ($this->x == 3) throw new Exception(__METHOD__); next($this->arr)…
14 …public function valid() { if ($this->x == 4) throw new Exception(__METHOD__); return (key($thi…
19 while($t->x < 5)
32 $t->x++;
H A Ddestructor_and_references.phpt6 class test1 {public $x;};
7 class test2 {public $x;};
8 class test3 {public $x;};
9 class test4 {public $x;};
16 $o3->x = &$o4;
/PHP-7.4/ext/dba/
H A Dinstall_cdb.sh35 ar x ../cdb.a
36 ar x ../byte.a
37 ar x ../unix.a
38 ar x ../byte.a
39 ar x ../buffer.a
/PHP-7.4/ext/standard/tests/file/
H A Dfwrite_variation4-win32.phpt2 Test fwrite() function : usage variations - x, xb, xt, x+, x+b & x+t modes
26 Test fwrite with file opened in mode : x, xb, xt, x+, x+b, x+t
30 $file_modes = array("x","xb","xt","x+","x+b","x+t");
77 -- Opening file in x --
101 -- Opening file in x+ --
109 -- Opening file in x+b --
127 -- Opening file in x --
151 -- Opening file in x+ --
177 -- Opening file in x --
201 -- Opening file in x+ --
[all …]
H A Dfwrite_variation4.phpt2 Test fwrite() function : usage variations - x, xb, xt, x+, x+b & x+t modes
26 Test fwrite with file opened in mode : x, xb, xt, x+, x+b, x+t
30 $file_modes = array("x","xb","xt","x+","x+b","x+t");
77 -- Opening file in x --
101 -- Opening file in x+ --
109 -- Opening file in x+b --
127 -- Opening file in x --
151 -- Opening file in x+ --
177 -- Opening file in x --
201 -- Opening file in x+ --
[all …]
/PHP-7.4/ext/fileinfo/tests/
H A Dbug77961.magic3 !:mime text/x-srt
12 >0 belong x \b]
15 >5 byte x version %d.
16 >4 byte x \b%d
17 !:mime application/x-java-pack200
22 !:mime text/x-objective-c
33 >>>>&0 der prt_str=x \b, countryName=%s
37 >>>>&0 der utf8_str=x \b, stateOrProvinceName=%s
41 >>>>&0 der utf8_str=x \b, organizationName=%s
45 >>>>&0 der utf8_str=x \b, commonName=%s
/PHP-7.4/ext/standard/tests/serialize/
H A Dunserialize_classes.phpt6 public $x = "bar";
21 ["x"]=>
34 ["x"]=>
45 ["x"]=>
58 ["x"]=>
69 ["x"]=>
80 ["x"]=>
/PHP-7.4/ext/standard/
H A Dexec.c294 register size_t x, y; in php_escape_shell_cmd() local
310 for (x = 0, y = 0; x < l; x++) { in php_escape_shell_cmd()
311 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_cmd()
319 x += mb_len - 1; in php_escape_shell_cmd()
323 switch (str[x]) { in php_escape_shell_cmd()
327 if (!p && (p = memchr(str + x + 1, str[x], l - x - 1))) { in php_escape_shell_cmd()
401 size_t x, y = 0; in php_escape_shell_arg() local
420 for (x = 0; x < l; x++) { in php_escape_shell_arg()
421 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_arg()
429 x += mb_len - 1; in php_escape_shell_arg()
[all …]

Completed in 36 milliseconds

12345678910>>...57