Home
last modified time | relevance | path

Searched refs:x (Results 126 – 150 of 1289) sorted by relevance

12345678910>>...52

/PHP-7.0/Zend/tests/
H A Ddereference_013.phpt9 public $x = array(2);
11 public function __call($x, $y) {
12 if (count($this->x) == 1) {
13 $this->x[] = $y[0];
15 return $this->x;
21 $x = array(1);
23 $foo->b($x)[1] = 3;
H A Dns_036.phpt12 function f1($x = ArrayObject::STD_PROP_LIST) {
13 var_dump($x);
15 function f2($x = \ArrayObject::STD_PROP_LIST) {
16 var_dump($x);
18 function f3($x = \A\ArrayObject::STD_PROP_LIST) {
19 var_dump($x);
21 function f4($x = B\ArrayObject::STD_PROP_LIST) {
22 var_dump($x);
H A Dclosure_004.phpt7 $x = 4;
9 $lambda1 = function () use ($x) {
10 echo "$x\n";
13 $lambda2 = function () use (&$x) {
14 echo "$x\n";
15 $x++;
H A Dbug44141.phpt7 public $x;
8 private function __construct($x)
10 $this->x = $x;
16 static public function cheat($x)
18 return new Y($x);
23 echo $y->x, PHP_EOL;
H A Dgc_035.phpt7 public $x;
9 unset($this->x);
14 $a->x = [];
15 $a->x[] =& $a->x;
16 $a->x[] = $a;
H A Dbug43651.phpt11 var_dump(is_callable("x\\"));
12 var_dump(is_callable("\\x"));
13 var_dump(is_callable("x\\x"));
14 var_dump(is_callable("x\\\\"));
15 var_dump(is_callable("\\x"));
16 var_dump(is_callable("x\\\\x"));
H A Dtemporary_cleaning_005.phpt19 $x = 2;
21 while ($x-- && new stdClass) {
22 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
36 $x = 2;
38 while ($x-- && new stdClass) {
39 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
H A Ddereference_012.phpt7 static $x = array();
10 self::$x = array(1, 2, 3);
11 return self::$x;
15 $x = array(1);
16 $x[] = 2;
17 return $x;
25 var_dump($foo::$x);
H A D037.phpt8 class closure { static $x = 1;}
10 $x = __NAMESPACE__;
11 var_dump(closure::$x);
13 var_dump($x::$x);
19 Fatal error: Uncaught Error: Access to undeclared static property: Closure::$x in %s:%d
H A Dbug39018.phpt23 $x = 'test';
25 @$x[4];
27 @$y = $x[4];
29 @('a' == $x[4]);
31 $x[4] == 'a'; // 28
33 @$x[4] == 'a';
35 (@$x[4]) == 'a';
37 ($x[4]) == 'a'; // 34
39 (@($x[4])) == 'a';
43 @($x[4]) == 'a';
[all …]
/PHP-7.0/ext/gd/libgd/
H A Dgd_filter.c18 int x, y; in gdImageNegate() local
31 for (x=0; x<src->sx; ++x) { in gdImageNegate()
51 int x, y; in gdImageGrayScale() local
68 for (x=0; x<src->sx; ++x) { in gdImageGrayScale()
91 int x, y; in gdImageBrightness() local
107 for (x=0; x<src->sx; ++x) { in gdImageBrightness()
136 int x, y; in gdImageContrast() local
153 for (x=0; x<src->sx; ++x) { in gdImageContrast()
208 for (x=0; x<src->sx; ++x) { in gdImageColor()
265 for(x=0; x<src->sx; x++) { in gdImageConvolution()
[all …]
H A Dgd_arc.c19 int x=0,mx1=0,mx2=0,my1=0,my2=0; in gdImageEllipse() local
36 x = a; in gdImageEllipse()
37 while (x > 0){ in gdImageEllipse()
44 x--; in gdImageEllipse()
58 int x=0,mx1=0,mx2=0,my1=0,my2=0; in gdImageFilledEllipse() local
66 for (x = mx-a; x <= mx+a; x++) { in gdImageFilledEllipse()
67 gdImageSetPixel(im, x, my, c); in gdImageFilledEllipse()
80 x = a; in gdImageFilledEllipse()
82 while (x > 0){ in gdImageFilledEllipse()
89 x--; in gdImageFilledEllipse()
/PHP-7.0/ext/reflection/tests/
H A Dtraits003.phpt17 $x = new ReflectionClass('foo');
18 var_dump($x->isTrait());
20 $x = new ReflectionClass('bar');
21 var_dump($x->isTrait());
23 $x = new ReflectionClass('baz');
24 var_dump($x->isTrait());
H A DReflectionClass_getModifierNames_basic.phpt12 class x
67 string(14) "x::__construct"
72 string(13) "x::__destruct"
77 string(4) "x::a"
82 string(4) "x::b"
89 string(4) "x::c"
94 string(4) "x::d"
101 string(4) "x::e"
106 string(4) "x::f"
113 string(4) "x::g"
[all …]
/PHP-7.0/ext/standard/tests/strings/
H A Dsprintf_variation36.phpt24 "%x", "%xx", "%lx",
25 "%Lx", " %x", "%x ",
26 "\t%x", "\n%x", "%4x",
27 "%30x", "%[0-9A-Fa-f]", "%*x"
53 string(1) "x"
62 string(1) "x"
68 string(1) "x"
77 string(1) "x"
/PHP-7.0/ext/standard/tests/array/
H A Darray_merge_replace_recursive_refs.phpt6 $x = 24;
8 $arr2 = [[&$x]];
9 unset($x);
16 $x = 24;
18 $arr2 = [&$x];
19 unset($x);
/PHP-7.0/ext/opcache/tests/
H A Dleak_001.phpt17 $x = 2;
19 if ($x + $y);
21 if ($x);
23 $a = [[$x]];
28 $x = 2;
29 $a = [1,$x];
/PHP-7.0/Zend/
H A Dzend_strtod.c675 x = b->x;
752 (x) ULong x; in hi0bits() argument
880 for(x = c->x, xa = x + wc; x < xa; x++)
1041 x = b->x;
1207 (x) U *x; in ulp() argument
1344 x = b->x;
1705 x = b->x;
1773 x = b->x;
1982 x = b->x;
2011 x = b->x;
[all …]
/PHP-7.0/
H A DMakefile.gcov18 for x in $$files; do \
21 dir=lcov_data/`dirname $$x`; \
44 if test -f "$$x.gcno"; then \
45 cp $$x.gcno lcov_data/$$y.gcno ; \
47 if test -f "$$x.gcda"; then \
50 if test -f "$$x.da"; then \
51 cp $$x.da lcov_data/$$y.da ; \
53 if test -f "$$x.bb"; then \
54 cp $$x.bb lcov_data/$$y.bb ; \
56 if test -f "$$x.bbg"; then \
[all …]
/PHP-7.0/ext/pdo_sqlite/tests/
H A Dbug44327_2.phpt12 $x = $db->query('select 1 as queryString');
13 var_dump($x, $x->queryString);
15 $y = $x->fetch();
20 $x = $db->query('select 1 as queryString');
21 var_dump($x, $x->queryString);
23 $y = $x->fetch(PDO::FETCH_LAZY);
/PHP-7.0/ext/mbstring/oniguruma/win32/
H A Dconfig.h24 #define TOKEN_PASTE(x,y) x##y argument
28 #define NORETURN(x) __declspec(noreturn) x argument
30 #define NORETURN(x) x argument
84 #define RSHIFT(x,y) ((x)>>(int)y) argument
/PHP-7.0/ext/spl/tests/
H A Dbug46053.phpt6 $x = new splfileobject(__FILE__);
7 $x->getPathName();
8 $x->seek(10);
9 $x->seek(0);
10 var_dump(trim($x->fgets()));
/PHP-7.0/ext/mcrypt/tests/
H A Dbug55169.phpt20 Hex: %x
24 Hex: %x
28 Hex: %x
32 Hex: %x
36 Hex: %x
40 Hex: %x
44 Hex: %x
/PHP-7.0/ext/dba/libcdb/
H A Dcdb_make.c147 struct cdb_hplist *x; in cdb_make_finish() local
153 for (x = c->head; x; x = x->next) { in cdb_make_finish()
154 i = x->num; in cdb_make_finish()
156 ++c->count[255 & x->hp[i].h]; in cdb_make_finish()
186 for (x = c->head; x; x = x->next) { in cdb_make_finish()
187 i = x->num; in cdb_make_finish()
189 c->split[--c->start[255 & x->hp[i].h]] = x->hp[i]; in cdb_make_finish()
224 for (x = c->head; x; c->head = x) { in cdb_make_finish()
225 x = x->next; in cdb_make_finish()
/PHP-7.0/ext/intl/normalizer/
H A Dnormalizer.c40 #define NORMALIZER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in normalizer_register_constants() argument
41 … NORMALIZER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Normalizer_ce_ptr, ZEND_STRS( … in normalizer_register_constants() argument

Completed in 93 milliseconds

12345678910>>...52