Home
last modified time | relevance | path

Searched refs:x (Results 426 – 450 of 1819) sorted by relevance

1...<<11121314151617181920>>...73

/php-src/ext/spl/tests/
H A Dbug46051.phpt6 $x = new splfileinfo(__FILE__);
9 $x->openFile("", false, []);
12 var_dump($x->getPathName());
/php-src/ext/mbstring/tests/
H A Dmb_convert_encoding_leak.phpt8 $x = "x";
9 $array = ["foo" . $x => "bar"];
/php-src/Zend/tests/
H A Dclosure_038.phpt7 private $x;
10 $this->x = $v;
14 return function() { return ++$this->x; };
18 private $x;
21 $this->x = $v*2;
58 Fatal error: Uncaught Error: Cannot access private property B::$x in %s:%d
H A Dclosure_039.phpt7 private $x;
10 $this->x = $v;
14 return function() { return ++$this->x; };
18 private $x;
21 $this->x = $v*2;
58 Fatal error: Uncaught Error: Cannot access private property B::$x in %s:%d
H A Dunset_cast_removed.phpt6 $x = 1;
7 var_dump((unset) $x);
8 var_dump($x);
H A Dbug70873.phpt7 private static $x = 1;
12 var_dump(self::$x);
18 var_dump(A::$x);
30 Fatal error: Uncaught Error: Cannot access private property B::$x in %sbug70873.php:%d
H A Dbug48428.phpt6 function x() { throw new Exception("ERROR"); }
7 x(x());
/php-src/ext/opcache/tests/jit/
H A Dfetch_r_001.phpt9 $x = [&$v];
10 $y = 'x';
11 $$y == [&$x[0]];
H A Dinc_002.phpt14 $x = 1;
15 ++$x; // reg -> mem
16 var_dump($x);
H A Dinc_010.phpt14 $x = 1.0;
15 ++$x; // reg -> mem
16 var_dump($x);
H A Dgh8461-006.phpt16 $x = 0;
19 global $x;
20 $x += 1;
43 var_dump($initialRequest ? $x : $y);
/php-src/Zend/tests/generators/
H A Dbug71013.phpt27 $x = foo();
29 var_dump($x->current());
33 echo "Unsetting \$x\n";
34 unset($x);
47 Unsetting $x
/php-src/ext/standard/tests/file/
H A Dfscanf_variation35.phpt29 $hexa_formats = array( "%x", "%hx", "%lx", "%Lx", " %x", "%x ", "% x", "\t%x", "\n%x", "%4x", "%30x
H A D007_variation16.phpt2 Test fopen and fclose() functions - usage variations - "x+t" mode
6 /* Test fopen() and fclose(): Opening the file in "x+t" mode,
9 checking for the warning msg when trying to open an existing file in "x+t" mode,
16 echo "*** Test fopen() & fclose() functions: with 'x+t' mode ***\n";
17 $file_handle = fopen($file, "x+t"); //opening the non-existing file in "x+t" mode, file will be cr…
28 $file_handle = fopen($file, "x+t"); //Opening the existing data file in "x+t" mode to check for th…
36 *** Test fopen() & fclose() functions: with 'x+t' mode ***
H A D007_variation24.phpt2 Test fopen and fclose() functions - usage variations - "x+b" mode
6 /* Test fopen() and fclose(): Opening the file in "x+b" mode,
9 checking for the warning msg when trying to open an existing file in "x+b" mode,
16 echo "*** Test fopen() & fclose() functions: with 'x+b' mode ***\n";
17 $file_handle = fopen($file, "x+b"); //opening the non-existing file in "x+b" mode, file will be cr…
28 $file_handle = fopen($file, "x+b"); //Opening the existing data file in "x+b" mode to check for th…
36 *** Test fopen() & fclose() functions: with 'x+b' mode ***
H A D007_variation7.phpt2 Test fopen and fclose() functions - usage variations - "x" mode
6 /* Test fopen() and fclose(): Opening the file in "x" mode,
9 checking for the warning msg when trying to open an existing file in "x" mode,
16 echo "*** Test fopen() & fclose() functions: with 'x' mode ***\n";
17 $file_handle = fopen($file, "x"); //opening the non-existing file in "x" mode, file will be created
28 $file_handle = fopen($file, "x"); //Opening the existing data file in 'x' mode to check for the wa…
36 *** Test fopen() & fclose() functions: with 'x' mode ***
/php-src/ext/random/
H A Dgammasection.c37 static double gamma_low(double x) in gamma_low() argument
39 return x - nextafter(x, -DBL_MAX); in gamma_low()
42 static double gamma_high(double x) in gamma_high() argument
44 return nextafter(x, DBL_MAX) - x; in gamma_high()
47 static double gamma_max(double x, double y) in gamma_max() argument
49 return (fabs(x) > fabs(y)) ? gamma_high(x) : gamma_low(y); in gamma_max()
/php-src/ext/standard/tests/serialize/
H A Dsleep_deref.phpt7 public $x = 42;
9 $name = 'x';
18 string(28) "O:4:"Test":1:{s:1:"x";i:42;}"
/php-src/ext/dom/tests/modern/html/parser/
H A DHTMLDocument_fromString_fromFile_LIBXML_HTML_NOIMPLIED.phpt27 test("<title>x</title><p>foo</p>");
29 test("<!-- bar --><head><title>x</title><!-- foo --></head><p>foo</p><!-- bar -->");
31 test("<head><title>x</title></head><body><p>foo</p></body>");
38 test("<html><head><title>x</title></head><!-- foo --><body><p>foo</p></body></html>");
61 Testing: <title>x</title><p>foo</p>
62 <title>x</title><p>foo</p>
65 Testing: <!-- bar --><head><title>x</title><!-- foo --></head><p>foo</p><!-- bar -->
66 <!-- bar --><head><title>x</title><!-- foo --></head><p>foo</p><!-- bar -->
69 Testing: <head><title>x</title></head><body><p>foo</p></body>
70 <head><title>x</title></head><body><p>foo</p></body>
[all …]
/php-src/ext/session/tests/
H A Dbug71972.phpt17 for ( $x=2; $x < 20; $x++) {
18 cyclic_ref($x);
/php-src/sapi/phpdbg/tests/
H A Dexceptions_003.phpt16 >00005: x();
19 prompt> >00005: x();
26 >00005: x();
40 x();
/php-src/ext/gd/libgd/
H A Dgd2time.c17 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
46 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdparttopng.c15 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h); in main()
36 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
/php-src/ext/standard/tests/array/
H A Darray_sum_objects_operation_no_cast_FFI.phpt8 $x = FFI::cdef()->new("int[2]");
9 $x[0] = 10;
10 $x[1] = 25;
12 $input = [$x, 1];
/php-src/ext/opcache/tests/opt/
H A Ddce_007.phpt14 function esc($x) {
15 $a = [$x];
31 0000 CV0($x) = RECV 1
32 0001 CV1($a) = INIT_ARRAY 1 (packed) CV0($x) NEXT

Completed in 39 milliseconds

1...<<11121314151617181920>>...73