Home
last modified time | relevance | path

Searched refs:green (Results 51 – 75 of 103) sorted by relevance

12345

/PHP-5.4/ext/standard/tests/array/
H A Darray_unshift_variation6.phpt31 array('a' => 'green', 'red', 'brown', 33, 88, 'orange', 'item' => 'ball')
107 string(5) "green"
155 string(5) "green"
H A Darray_intersect_ukey_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
H A Darray_diff_ukey_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
H A Darray_diff_key_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
H A Darray_intersect_key_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
H A Darray_intersect_ukey_variation4.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
15 $array4 = array('green' => 5, 'cyan' => 8);
H A Darray_diff_key_variation3.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
H A Darray_diff_uassoc_variation4.phpt14 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
15 $array2 = array("a" => "green", "yellow", "red");
H A Darray_diff_ukey_variation3.phpt13 $array1 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
14 $array2 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
/PHP-5.4/ext/gd/tests/
H A Dlibgd00191.phpt16 if ($arr['red'] == 255 && $arr['green'] == 255 && $arr['blue'] == 255) {
H A Dbug36697.phpt24 echo $colors['red'] . ' ' . $colors['green'] . ' ' . $colors['blue'];
H A Dlibgd00100.phpt15 $green = imagecolorallocatealpha($im, 0, 255, 0, 10);
84 imagefilledpolygon($im, $diamond, 4, $green);
H A Dimagecolorallocate_basic.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
H A Dimagecolorallocate_variation2.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
22 $green = 10;
104 var_dump( imagecolorallocate($im, $value, $green, $blue) );
H A Dimagecolorallocate_variation4.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
22 $green = 10;
103 var_dump( imagecolorallocate($im, $red, $green, $value) );
H A Dimagecolorallocate_variation6.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
H A Dcreatefromstring.phpt44 if ($c['red'] != 255 || $c['green'] != 0 || $c['blue'] != 0) {
H A Dimagecolorallocate_variation1.phpt11 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
20 $green = 10;
111 var_dump( imagecolorallocate($value, $red, $green, $blue) );
H A Dcopyresized.phpt15 return ($colors['red'] << 16) + ($colors['green'] << 8) + ($colors['blue']);
/PHP-5.4/ext/soap/tests/soap12/
H A DT46.phpt24 <item xsi:type="xsd:string">green</item>
35 …</item><item xsi:type="xsd:string">blue</item><item xsi:type="xsd:string">green</item></varArray><…
/PHP-5.4/ext/gd/libgd/
H A Dgd_compat.h33 int gdImageColor(gdImagePtr src, const int red, const int green, const int blue, const int alpha);
H A Dgd_color.c56 im2->green[color] = *(bp++) / count; in gdImageColorMatch()
H A Dgd.c162 im->green[i] = 0; in gdImageCreate()
279 gd = im->green[i] - g; in gdImageColorClosestAlpha()
501 im->green[ct] = g; in gdImageColorAllocateAlpha()
551 gd = (long) (im->green[c] - g); in gdImageColorResolveAlpha()
576 im->green[op] = g; in gdImageColorResolveAlpha()
634 to->green[i] = from->green[i]; in gdImagePaletteCopy()
2528 green /= spixels; in gdImageCopyResampled()
2538 green /= alpha_sum; in gdImageCopyResampled()
2545 if (green > 255.0f) { in gdImageCopyResampled()
2546 green = 255.0f; in gdImageCopyResampled()
[all …]
H A Dgd_gd.c72 if (!gdGetByte(&im->green[i], in)) { in _gdGetColors()
224 gdPutC((unsigned char) im->green[i], out); in _gdPutColors()
/PHP-5.4/ext/exif/
H A Dtest.txt50 $ret = '<b style="color:green">O.K.</b>';
286 $error = "<b style='color: green'>filetype not supported: $types[$type]</b>";
296 $error = "<b style='color:green'>$t_width x $t_height</b><br>$error";
308 $res_exif_read_data = "<b style='color: green'>filetype not supported: $types[$type]</b>";

Completed in 40 milliseconds

12345