Home
last modified time | relevance | path

Searched refs:y (Results 126 – 150 of 717) sorted by relevance

12345678910>>...29

/php-src/tests/classes/
H A Dstatic_properties_003_error3.phpt6 protected static $y = 'C::$y';
11 $c->y = 1;
17 Fatal error: Uncaught Error: Cannot access protected property C::$y in %s:8
H A Dstatic_properties_003_error4.phpt6 protected static $y = 'C::$y';
12 $c->y =& $ref;
19 Error: Cannot access protected property C::$y in %s:%d
H A Dstatic_properties_003.phpt8 protected static $y = 'C::$y';
23 var_dump(isset($c->y));
24 //unset($c->y); // Fatal error, tested in static_properties_003_error1.phpt
25 //echo $c->y; // Fatal error, tested in static_properties_003_error2.phpt
26 //$c->y = 1; // Fatal error, tested in static_properties_003_error3.phpt
27 //$c->y =& $ref; // Fatal error, tested in static_properties_003_error4.phpt
/php-src/ext/opcache/tests/jit/
H A Dfetch_dim_r_002.phpt26 $y="b";
27 foo($x.$y);
30 $y="x";
31 foo($x.$y);
H A Dgh8461-005.phpt21 $y = 0;
23 global $y;
24 $y += 1;
32 var_dump($initialRequest ? $x : $y);
H A Dgh8461-006.phpt32 $y = 0;
34 global $y;
35 $y += 1;
43 var_dump($initialRequest ? $x : $y);
H A Dassign_obj_on_null.phpt17 $obj->x->y = 1;
21 $obj->x->y += 1;
35 Attempt to assign property "y" on null
36 Attempt to assign property "y" on null
H A Dfetch_dim_r_001.phpt24 $y = "b";
25 var_dump($a[$x . $y]);
28 $y = "x";
29 var_dump($a[$x . $y]);
/php-src/ext/opcache/tests/
H A Dtype_001.phpt10 class y extends Foo {
11 public (y&A)|X $y;
/php-src/ext/opcache/tests/opt/
H A Dinference_011.phpt10 for(; $a++; $a=y+6) {
11 y($a[y]);
H A Dinference_013.phpt9 function y(){
11 $x[] &= y;
13 $x[""] = y;
H A Dinference_006.phpt9 function y() {
10 $obj=new y;
11 u($y[$obj]);
H A Dassign_obj_001.phpt10 $a .= $a += $y;
11 $a = $a->y = '';
16 Warning: Undefined variable $y in %sassign_obj_001.php on line 3
20 Fatal error: Uncaught Error: Attempt to assign property "y" on string in %sassign_obj_001.php:4
H A Dassign_obj_op_001.phpt10 $a .= $a += $y;
11 $a = $a->y *= '';
16 Warning: Undefined variable $y in %sassign_obj_op_001.php on line 3
20 Fatal error: Uncaught Error: Attempt to assign property "y" on string in %sassign_obj_op_001.php:4
/php-src/Zend/tests/
H A Dforeach_005.phpt7 foreach($a as &$y) {
8 echo "$x-$y\n";
9 $y++;
H A Dcall_user_func_006.phpt17 $y = 42;
18 $ref =& $y;
19 call_user_func('Foo\bar', $y);
20 var_dump($y);
H A Dforeach_008.phpt7 foreach ($a as &$y) {
8 echo "$x - $y\n";
9 if ($x == 0 && $y == 1) {
H A Dbug64578.phpt9 $y = '1';
10 x($y);
11 print_r($y);
/php-src/ext/date/tests/
H A Ddate-lenient-create.phpt8 print_r( date_create_from_format( 'm/d/y', $date , $tz) );
11 print_r( date_create_from_format( 'm/d/y+', $date , $tz)->setTime(0, 0) );
14 print_r( date_create_from_format( '+m/d/y', $date , $tz)->setTime(0, 0) );
17 print_r( date_create_from_format( 'm/d/y++', $date , $tz)->setTime(0, 0) );
22 print_r( date_create_from_format( 'm/d/y+', $date , $tz)->setTime(0, 0) );
25 print_r( date_create_from_format( '+m/d/y', $date , $tz)->setTime(0, 0) );
/php-src/ext/gd/libgd/
H A Dgd_xbm.c44 int bit, x = 0, y = 0; in gdImageCreateFromXbm() local
143 gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0); in gdImageCreateFromXbm()
146 y++; in gdImageCreateFromXbm()
147 if (y == im->sy) { in gdImageCreateFromXbm()
179 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
211 for (y = 0; y < sy; y++) { in gdImageXbmCtx()
213 if (gdImageGetPixel(image, x, y) == fg) { in gdImageXbmCtx()
H A Dgd2time.c17 int x, y, w, h; in main() local
30 y = atoi (argv[4]); 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
30 y = atoi (argv[4]); 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/Zend/
H A Dzend_strtod.c708 Long x, y; local
711 for(k = 0, y = 1; x > y; y <<= 1, k++) ;
773 (y) ULong *y; in lo0bits() argument
775 (ULong *y)
814 *y = x;
845 ULong y; local
2607 y = 10*y + c - '0';
2661 y = 10*y + c;
3014 y = 0;
3016 y = 10*y + s0[i] - '0';
[all …]
/php-src/ext/standard/tests/mail/
H A Dmail_null_bytes.phpt7 mail("foo\0bar", "x", "y");
12 mail("x", "foo\0bar", "y");
17 mail("x", "y", "foo\0bar");
22 mail("x", "y", "z", "foo\0bar");
27 mail("x", "y", "z", "q", "foo\0bar");
/php-src/ext/mbstring/tests/
H A Dmb_send_mail_null_bytes.phpt9 mb_send_mail("foo\0bar", "x", "y");
14 mb_send_mail("x", "foo\0bar", "y");
19 mb_send_mail("x", "y", "foo\0bar");
24 mb_send_mail("x", "y", "z", "foo\0bar");
29 mb_send_mail("x", "y", "z", "q", "foo\0bar");

Completed in 85 milliseconds

12345678910>>...29