/PHP-7.4/ext/pcre/tests/ |
H A D | bug79257.phpt | 6 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))/', 'foo', $matches); 8 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))/', 'foo', $matches, 11 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))/', 'foo', $matches, 35 ["g"]=> 43 ["g"]=> 58 ["g"]=> 81 ["g"]=> 106 ["g"]=> 120 ["g"]=> 139 ["g"]=> [all …]
|
/PHP-7.4/ext/standard/tests/file/windows_mb_path/ |
H A D | test_cp932_1.phpt | 26 $item = "�e�X�g�}���`�o�C�g�E�p�X"; // cp932 string 50 getting basename of %s\�e�X�g�}���`�o�C�g�E�p�X42\�e�X�g�}���`�o�C�g�E�p�X4 51 string(%d) "�e�X�g�}���`�o�C�g�E�p�X4" 53 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X42\�e�X�g�}���`�o�C�g�E�p�X4"
|
H A D | test_cp932_2.phpt | 26 $item = "�e�X�g�}���`�o�C�g�E�p�X"; // cp932 string 52 getting basename of %s\�e�X�g�}���`�o�C�g�E�p�X33 53 string(%d) "�e�X�g�}���`�o�C�g�E�p�X33" 55 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X33"
|
H A D | test_cp932_3.phpt | 27 $item = "�e�X�g�}���`�o�C�g�E�p�X77"; // cp932 string 41 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X77" 44 �e�X�g�}���`�o�C�g�E�p�X77
|
H A D | test_cp1250_to_utf8_4.phpt | 23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars 47 getting basename of %s\Árvíztűrő tükörfúrógép42\Árvíztűrő tükörfúrógép4 48 string(32) "Árvíztűrő tükörfúrógép4" 50 string(%d) "%s\Árvíztűrő tükörfúrógép42\Árvíztűrő tükörfúrógép4"
|
/PHP-7.4/Zend/tests/ |
H A D | bug29104.phpt | 7 function g() 9 echo "function g - begin\n"; 16 echo "function g - end\n"; 21 $a->g(); 25 function g - begin 26 function g - end
|
H A D | bug74840.phpt | 6 $g = (function($a) { 15 $g->next(); 16 var_dump($g->getReturn());
|
/PHP-7.4/ext/standard/tests/strings/ |
H A D | pack_float.phpt | 40 'pack g', 41 bin2hex(pack("g", "")), 42 bin2hex(pack("g", "a")), 43 bin2hex(pack("g", " ")), 45 bin2hex(pack("g", 0)), 46 bin2hex(pack("g", 1)), 47 bin2hex(pack("g", 1.0)), 51 bin2hex(pack("g", -1)), 94 'unpack g', 149 string(6) "pack g" [all …]
|
/PHP-7.4/tests/lang/ |
H A D | engine_assignExecutionOrder_001.phpt | 11 function g() { 12 echo "in g()\n"; 18 ${f()} = g(); 22 $a[f()] = g(); 77 in g() 83 in g() 92 in g() 101 in g() 116 in g() 128 in g() [all …]
|
H A D | foreachLoopObjects.002.phpt | 42 protected $g = "Original g"; 204 ["g":protected]=> 239 ["g":protected]=> 279 ["g":protected]=> 314 ["g":protected]=> 388 ["g":protected]=> 411 ["g":protected]=> 433 ["g":protected]=> 468 ["g":protected]=> 493 ["g":protected]=> [all …]
|
/PHP-7.4/ext/gd/libgd/ |
H A D | gd_rotate.c | 69 if (g>255) { in gdImageSkewX() 70 g = 255; in gdImageSkewX() 116 int i, iYPos=0, r, g, b, a; in gdImageSkewY() local 160 if (g>255) { in gdImageSkewY() 161 g = 255; in gdImageSkewY() 204 int c,r,g,b,a; in gdImageRotate90() local 229 g = gdImageGreen(src,c); in gdImageRotate90() 251 int c,r,g,b,a; in gdImageRotate180() local 276 g = gdImageGreen(src,c); in gdImageRotate180() 299 int c,r,g,b,a; in gdImageRotate270() local [all …]
|
H A D | gd_filter.c | 117 int r,g,b,a; in gdImageNegate() local 150 int r,g,b,a; in gdImageGrayScale() local 172 r = g = b = (int) (.299 * r + .587 * g + .114 * b); in gdImageGrayScale() 190 int r,g,b,a; in gdImageBrightness() local 214 g = g + brightness; in gdImageBrightness() 218 g = (g > 255)? 255 : ((g < 0)? 0:g); in gdImageBrightness() 235 int r,g,b,a; in gdImageContrast() local 271 gf = (double)g/255.0; in gdImageContrast() 307 int r,g,b,a; in gdImageColor() local 316 g = g + green; in gdImageColor() [all …]
|
/PHP-7.4/Zend/tests/generators/ |
H A D | yield_from_iterator.phpt | 5 function g() { 11 $g = g(); 12 foreach ($g as $yielded) {
|
H A D | yield_precedence.phpt | 18 $g = gen(); 19 for ($g->rewind(), $i = 1; $g->valid(); $g->send($i), $i++) { 20 echo "{$g->key()} => {$g->current()}\n";
|
H A D | bug70965.phpt | 10 function bar($g) { 11 yield from $g; 19 foreach($gens as $g) { 20 var_dump($g->current());
|
H A D | throw_into_yield_from_array.phpt | 18 function test($g) { 19 var_dump($g->current()); 21 $g->throw(new Exception("Exception!")); 25 var_dump($g->current());
|
H A D | mutli_yield_from_with_exception.phpt | 20 foreach ($gens as $g) { 21 $g->current(); // init. 25 foreach ($gens as $i => $g) { 27 var_dump($g->current()); 28 $g->next();
|
/PHP-7.4/ext/gd/tests/ |
H A D | bug48732.phpt | 12 $g = imagecreate(100, 50); 13 $bgnd = imagecolorallocate($g, 255, 255, 255); 14 $black = imagecolorallocate($g, 0, 0, 0); 15 $bbox = imagettftext($g, 12, 0, 0, 20, $black, $font, "ABCEDFGHIJKLMN\nopqrstu\n"); 16 imagepng($g, "$cwd/bug48732.png");
|
H A D | bug43073.phpt | 31 $g = imagecreate(800, 800); 32 $bgnd = imagecolorallocate($g, 255, 255, 255); 33 $black = imagecolorallocate($g, 0, 0, 0); 34 $red = imagecolorallocate($g, 255, 0, 0); 40 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF'); 41 imagepolygon($g, $bbox, 4, $red); 55 imagepng($g, "$cwd/bug43073.png");
|
H A D | bug48732-mb.phpt | 13 $g = imagecreate(100, 50); 14 $bgnd = imagecolorallocate($g, 255, 255, 255); 15 $black = imagecolorallocate($g, 0, 0, 0); 16 $bbox = imagettftext($g, 12, 0, 0, 20, $black, $font, "ABCEDFGHIJKLMN\nopqrstu\n"); 17 imagepng($g, "$cwd/bug48732私はガラスを食べられます.png");
|
/PHP-7.4/ext/gmp/tests/ |
H A D | gmp_sub.phpt | 14 var_dump($g = gmp_sub(10000, 10001)); 15 var_dump(gmp_strval($g)); 16 var_dump($g = gmp_sub(10000, -1)); 17 var_dump(gmp_strval($g)); 18 var_dump($g = gmp_sub(10000, new stdclass)); 19 var_dump(gmp_strval($g)); 20 var_dump($g = gmp_sub(new stdclass, 100)); 21 var_dump(gmp_strval($g));
|
H A D | gmp_strval.phpt | 17 $g = gmp_init("9765456"); 18 var_dump(gmp_strval($g)); 19 var_dump(gmp_strval($g, -1)); 20 var_dump(gmp_strval($g, 100000)); 21 var_dump(gmp_strval($g, 10)); 23 $g = gmp_init("-3373333"); 24 var_dump(gmp_strval($g)); 25 var_dump(gmp_strval($g, -1)); 26 var_dump(gmp_strval($g, 100000)); 27 var_dump(gmp_strval($g, 10));
|
/PHP-7.4/ext/reflection/tests/ |
H A D | 028.phpt | 10 $g = foo(); 11 $g->next(); 14 $r = new ReflectionGenerator($g);
|
H A D | 027.phpt | 10 $g = foo(); 11 $r = new ReflectionGenerator($g); 13 $g->next();
|
/PHP-7.4/ext/date/tests/ |
H A D | bug32086.phpt | 8 echo $g = strtotime("2004-11-01"), "\n"; 10 echo $j = strtotime("+1 day", $g), "\n"; 13 echo date("Y-m-d H:i:s T\n", $g); 19 echo $g = strtotime("2005-02-19"), "\n"; 21 echo $j = strtotime("+1 day", $g), "\n"; 24 echo date("Y-m-d H:i:s T\n", $g);
|