Home
last modified time | relevance | path

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

12345678910>>...56

/PHP-7.2/ext/intl/dateformat/
H A Ddateformat.c37 #define DATEFORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in dateformat_register_constants() argument
38 …EFORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_… in dateformat_register_constants() argument
41 …ATTER_EXPOSE_UCAL_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_… in dateformat_register_constants() argument
/PHP-7.2/Zend/tests/
H A Dexception_010.phpt6 $x = new Exception;
7 $x->gettraceasstring(1);
8 $x->gettraceasstring();
9 $x->__tostring(1);
10 $x->gettrace(1);
11 $x->getline(1);
12 $x->getfile(1);
13 $x->getmessage(1);
14 $x->getcode(1);
H A Dclosure_003.phpt7 $x = 4;
9 $lambda1 = function () use ($x) {
10 echo "$x\n";
13 $lambda2 = function () use (&$x) {
14 echo "$x\n";
19 $x++;
H A Dtemporary_cleaning_005.phpt17 $x = 2;
19 while ($x-- && new stdClass) {
20 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
34 $x = 2;
36 while ($x-- && new stdClass) {
37 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
H A Dns_074.phpt8 $x = function (\stdclass $x = NULL) {
9 var_dump($x);
14 $x(NULL);
15 $x(new stdclass);
16 $x(new \stdclass);
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 Dtemporary_cleaning_013.phpt36 function __set($x, $y) {}
56 function offsetSet($x, $y) {}
58 function offsetUnset($x) {}
71 function offsetUnset($x) {}
88 function __set($x, $y) {}
111 function __set($x, $y) {}
154 function __set($x, $y) {}
179 function __set($x, $y) {}
217 function __get($x) {}
225 function offsetGet($x) {}
[all …]
H A Dforeach_list_keyed.phpt7 ["x" => 1, "y" => 2],
8 ["x" => 2, "y" => 1]
11 foreach ($points as list("x" => $x, "y" => $y)) {
12 var_dump($x, $y);
18 "x" => [1, 2],
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 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);
/PHP-7.2/ext/pdo/
H A Dpdo.php6 $x = new PDO("sqlite::memory:"); variable
8 $x->query("create table test(name string, value string)");
9 debug_zval_dump($x);
11 $stmt = $x->prepare("INSERT INTO test (NAME, VALUE) VALUES (:name, :value)");
28 foreach ($x->query("select NAME, VALUE from test") as $row) {
40 foreach ($x->query("select NAME, VALUE from test", PDO_FETCH_COLUMN, 1) as $row) {
47 $stmt = $x->prepare("select NAME, VALUE from test where value like ?");
/PHP-7.2/ext/intl/transliterator/
H A Dtransliterator.c38 …#define TRANSLITERATOR_EXPOSE_CONST( x ) REGISTER_LONG_CONSTANT( #x, x, CONST_PERSISTENT | CONST_C… in transliterator_register_constants() argument
39 …RATOR_EXPOSE_CLASS_CONST( x ) zend_declare_class_constant_long( Transliterator_ce_ptr, ZEND_STRS( … in transliterator_register_constants() argument
/PHP-7.2/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 …]
/PHP-7.2/ext/simplexml/tests/
H A Dbug42369.phpt8 $x = simplexml_load_string($xml . "<q><x>foo</x></q>");
12 md5(strval($x->x));
17 md5($x->x);
/PHP-7.2/ext/gd/tests/
H A Dbug77198_threshold.phpt11 function createWhiteImageWithBlackPixelAt($x, $y)
15 imagesetpixel($im, $x, $y, 0x000000);
20 for ($x = 0; $x < 8; $x++) {
21 $orig = createWhiteImageWithBlackPixelAt($x, $y);
24 printf("Pixel at %d, %d: unexpected NULL crop\n", $x, $y);
28 printf("Pixel at %d, %d: unexpected width (%d)\n", $x, $y, $width);
32 printf("Pixel at %d, %d: unexpected height (%d)\n", $x, $y, $height);
36 printf("Pixel at %d, %d: unexpected color (%d)\n", $x, $y, $color);
/PHP-7.2/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());
/PHP-7.2/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.2/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.2/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.2/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.2/
H A DMakefile.gcov17 for x in $$files; do \
20 dir=lcov_data/`dirname $$x`; \
43 if test -f "$$x.gcno"; then \
44 cp $$x.gcno lcov_data/$$y.gcno ; \
46 if test -f "$$x.gcda"; then \
49 if test -f "$$x.da"; then \
50 cp $$x.da lcov_data/$$y.da ; \
52 if test -f "$$x.bb"; then \
53 cp $$x.bb lcov_data/$$y.bb ; \
55 if test -f "$$x.bbg"; then \
[all …]
/PHP-7.2/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);

Completed in 48 milliseconds

12345678910>>...56