Home
last modified time | relevance | path

Searched refs:y (Results 351 – 375 of 634) sorted by relevance

1...<<11121314151617181920>>...26

/PHP-8.1/Zend/tests/
H A Ddereference_014.phpt10 static public $y;
17 return self::$y;
H A Dbug42802.phpt28 $y = new \Exception();
32 test4($y);
H A Dnowdoc_013.phpt17 $y = 2;
24 …="color: #007700">EOT<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$y&nbsp;</span><span st…
H A Dbug35655.phpt17 $y = 2;
23 …="color: #007700">EOT<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$y&nbsp;</span><span st…
H A Dforeach_017.phpt41 $replacement = ['x', 'y', 'z'];
104 y
H A Dclosure_063.phpt6 static $y;
/PHP-8.1/ext/date/tests/
H A Dbug53437_var3.phpt7 $s = 'O:12:"DateInterval":15:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1…
15 ["y"]=>
H A Dbug53437_var5.phpt7 $s = 'O:12:"DateInterval":15:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1…
15 ["y"]=>
H A Dbug53437_var6.phpt7 $s = 'O:12:"DateInterval":16:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1…
15 ["y"]=>
H A Dtest-parse-from-format.phpt57 string(16) "D, d M y H:i:s O"
68 string(16) "l, d-M-y H:i:s T"
79 string(16) "D, d M y H:i:s O"
/PHP-8.1/ext/soap/tests/
H A Dbug48557.phpt15 $y = new SoapServer(__DIR__ . '/bug48557.wsdl');
16 $y->addfunction("test");
53 $y->handle($request);
H A Dclassmap004.phpt28 $this->y = $a + 1;
63 [y] => 6
/PHP-8.1/tests/lang/
H A Dbug73172.inc3 function test($a, $x, $y){
/PHP-8.1/ext/date/lib/
H A Dparse_date.re1159 s->time->y = 1970;
1198 s->time->y = 1970;
1736 s->time->relative.y = 0 - s->time->relative.y;
1968 in.time->y = TIMELIB_UNSET;
2022 time->y = 1970;
2034 if (time->y == TIMELIB_UNSET ) time->y = 1970;
2086 {'y', TIMELIB_FORMAT_YEAR_TWO_DIGIT},
2137 in.time->y = TIMELIB_UNSET;
2218 if (s->time->y == TIMELIB_UNSET) {
2226 if (s->time->y != TIMELIB_UNSET) {
[all …]
H A Dparse_posix.c479 static timelib_sll count_leap_years(timelib_sll y) in count_leap_years() argument
483 y--; in count_leap_years()
485 return (y/4) - (y/100) + (y/400); in count_leap_years()
549 year = dummy.y; in timelib_fetch_posix_timezone_offset()
/PHP-8.1/ext/date/
H A Dphp_date.c1132 now->y = yea; in php_mktime()
1175 zend_long m, d, y; in PHP_FUNCTION() local
1180 Z_PARAM_LONG(y) in PHP_FUNCTION()
1183 if (y < 1 || y > 32767 || !timelib_valid_date(y, m, d)) { in PHP_FUNCTION()
2884 dateobj->time->y = tmp_time->y; in php_date_modify()
3269 dateobj->time->y = y; in php_date_date_set()
3279 zend_long y, m, d; in PHP_FUNCTION() local
3295 zend_long y, m, d; in PHP_METHOD() local
3315 dateobj->time->y = y; in php_date_isodate_set()
3329 zend_long y, w, d = 1; in PHP_FUNCTION() local
[all …]
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug78152.phpt17 …"INSERT INTO test(id, label) VALUES (41, 'x'); INSERT INTO test_bad(id, label) VALUES (42, 'y')"));
20 …"INSERT INTO test(id, label) VALUES (42, 'x'); INSERT INTO test_bad(id, label) VALUES (43, 'y')"));
/PHP-8.1/ext/gd/
H A Dgd.c1256 int x,y; in PHP_FUNCTION() local
1257 for (y=0; y <= Height; y++) { in PHP_FUNCTION()
1312 int x,y; in PHP_FUNCTION() local
1313 for (y=0; y <= Height; y++) { in PHP_FUNCTION()
2211 zend_long x, y; in PHP_FUNCTION() local
2217 Z_PARAM_LONG(y) in PHP_FUNCTION()
2443 int x, y, c; in PHP_FUNCTION() local
2445 for (y = 0; y < gdImageSY(im); y++) { in PHP_FUNCTION()
2874 for (py = y; (py > (y - f->w)); py--) { in php_gdimagecharup()
2926 y = Y; in php_imagechar()
[all …]
/PHP-8.1/ext/standard/
H A Dmd5.c144 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
145 #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument
146 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
147 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument
/PHP-8.1/ext/gd/libgd/
H A Dgd_tga.c70 int y = 0; in gdImageCreateFromTgaCtx() local
112 for (y = 0; y < tga->height; y++) { in gdImageCreateFromTgaCtx()
113 register int *tpix = image->tpixels[y]; in gdImageCreateFromTgaCtx()
/PHP-8.1/ext/soap/tests/schema/
H A Dtest_schema.inc59 $y = new SoapServer($fname, array("features"=>$features));
60 $y->addfunction("test");
69 $y->handle($HTTP_RAW_POST_DATA);
/PHP-8.1/ext/standard/tests/strings/
H A Dvfprintf_error3.phpt27 vfprintf($fp, "Foo %y fake", ["not available"]);
52 Unknown format specifier "y"
/PHP-8.1/.github/actions/apt-x32/
H A Daction.yml11 apt-get update -y | true
13 apt-get install -y \
/PHP-8.1/Zend/tests/match/
H A D044.phpt8 default => 'y',
/PHP-8.1/ext/opcache/tests/jit/
H A Dassign_dim_009.phpt10 $y[] = $r = &$G;

Completed in 57 milliseconds

1...<<11121314151617181920>>...26