Home
last modified time | relevance | path

Searched refs:red (Results 26 – 50 of 296) sorted by relevance

12345678910>>...12

/PHP-5.6/ext/gd/tests/
H A Dbug53156.phpt14 global $img, $black, $red;
17 imagesetpixel($img, $x, $y, $red);
38 $red = imagecolorallocate($img, 255, 0, 0);
H A Dimagepolygon_basic.phpt28 // draw a red polygon
61 ["red"]=>
71 ["red"]=>
H A Dbug28147.phpt15 $red = imagecolorallocate($im, 255, 0, 0);
20 imageline($im, 299, 299, 0, 299, $red);
H A Dsimilarity.inc12 * @param int $red
18 function get_rgb($color, &$red, &$green, &$blue)
21 $red = ($color >> 16) & 0xFF;
H A Dbug74435.phpt16 list($red, $green, $blue, $alpha) = array_values(imagecolorsforindex($im, $index));
17 if ($red !== 0 || $green !== 0 || $blue !== 0 || $alpha !== 0) {
H A Dbug66590.phpt15 $red = imagecolorallocate($im, 255, 0, 0);
16 imagefilledrectangle($im, 0, 0, 74, 74, $red);
H A Dlibgd00186.phpt11 $red = imagecolorallocate($tile,0xff,0,0);
15 imagefilledrectangle($tile,0,0,2,10,$red);
H A Dimagedashedline_basic.phpt29 // red dashed lines
59 ["red"]=>
69 ["red"]=>
H A Dwebp_basic.phpt20 $red = imagecolorallocate($im1, 255, 0, 0);
24 imageline($im1, 3, 3, 71, 71, $red);
H A Dimagefilledpolygon_basic.phpt73 ["red"]=>
83 ["red"]=>
93 ["red"]=>
H A Dcopypalette.phpt20 if ($c['red']!=$i || $c['green']!=$i || $c['blue']!=$i) {
35 if ($c['red']!=0 || $c['green']!=0 || $c['blue']!=0 || $c['alpha']!=100) {
H A Dbug43073.phpt34 $red = imagecolorallocate($g, 255, 0, 0);
41 imagepolygon($g, $bbox, 4, $red);
/PHP-5.6/ext/standard/tests/array/
H A Dbug42838.phpt14 $array1 = array("a" => "green", "b" => "Brown", 'c' => 'blue', 0 => 'red');
15 $array2 = array("a" => "green", "b" => "Brown", 'c' => 'blue', 0 => 'red');
H A Darray_intersect_uassoc_basic.phpt15 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
16 $array2 = array("a" => "green", "yellow", "red");
H A Darray_diff_ukey_basic.phpt14 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
20 ["red"]=>
H A Darray_reverse_variation5.phpt55 array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
56 /*8*/ array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
222 ["red"]=>
234 ["red"]=>
246 ["red"]=>
258 ["red"]=>
269 ["red"]=>
280 ["red"]=>
H A Dsizeof_variation2.phpt29 array("color" => "red", "item" => "pen"),
30 /* 10 */ array('color' => 'red', 'item' => 'pen'),
31 array(TRUE => "red", FALSE => "pen" ),
32 array(false => 'red', true => 'pen' ),
33 array('color' => "red", "item" => 'pen', 1 => "Hi", "" => "Hello" ),
H A Darray_unique_variation4.phpt48 /*5*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "\tHello"),
49 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => '\tHello'),
100 ["red"]=>
109 ["red"]=>
H A Darray_map_variation5.phpt56 array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
57 /*8*/ array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
125 ["red"]=>
137 ["red"]=>
H A Darray_unshift_variation5.phpt59 /*7*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
60 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
240 ["red"]=>
258 ["red"]=>
273 ["red"]=>
290 ["red"]=>
H A Darray_diff_key_variation8.phpt15 'first' => array('blue' => 1, 'red' => 2),
24 'first' => array('blue' => 1, 'red' => 2,),
H A Darray_diff_variation8.phpt50 /*5*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "\tHello"),
51 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => '\tHello'),
141 ["red"]=>
160 ["red"]=>
H A Darray_diff_uassoc_variation14.phpt14 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
15 $array2 = array("a" => "green", "yellow", "red");
/PHP-5.6/ext/gd/libgd/
H A Dgd_png.c266 palette[i].red = palette[i].green = palette[i].blue = j; in gdImageCreateFromPngCtx()
271 palette[i].red = palette[i].green = palette[i].blue = i; in gdImageCreateFromPngCtx()
307 transparent = gdTrueColor(trans_color_rgb->red >> 8, in gdImageCreateFromPngCtx()
311 transparent = gdTrueColor(trans_color_rgb->red, in gdImageCreateFromPngCtx()
340 im->red[i] = palette[i].red; in gdImageCreateFromPngCtx()
587 trans_rgb_value.red = gdTrueColorGetRed (im->transparent); in gdImagePngCtxEx()
649 palette[mapping[i]].red = im->red[i]; in gdImagePngCtxEx()
655 palette[i].red = im->red[i]; in gdImagePngCtxEx()
/PHP-5.6/ext/soap/tests/interop/Round4/GroupI/
H A Dr4_groupI_xsd_025w.phpt18 $struct = new SOAPMultiOccursComplexType("arg",34,12.345,array("red","green","blue"));
28 …:varInt><ns1:varFloat>12.345</ns1:varFloat><ns1:varMultiOccurs><ns1:string>red</ns1:string><ns1:st…
30 …:varInt><ns1:varFloat>12.345</ns1:varFloat><ns1:varMultiOccurs><ns1:string>red</ns1:string><ns1:st…

Completed in 34 milliseconds

12345678910>>...12