HomeSort by relevance Sort by last modified time
    Searched refs:magenta (Results 1 - 25 of 43) sorted by null

1 2

  /external/ImageMagick/MagickCore/
colorspace-private.h 47 magenta, local
71 magenta=(MagickRealType) (1.0-green);
74 if (magenta < black)
75 black=magenta;
79 magenta=(MagickRealType) ((magenta-black)/(1.0-black));
83 pixel->green=QuantumRange*magenta;
pixel-accessor.h 794 const Quantum magenta,Quantum *magick_restrict pixel)
796 pixel[image->channel_map[MagentaPixelChannel].offset]=magenta;
colorspace.c 124 const double blue,double *cyan,double *magenta,double *yellow)
127 *magenta=QuantumScale*(QuantumRange-green);
    [all...]
  /external/eigen/test/
runtest.sh 8 magenta='\E[35m'
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wcsplugin.h 31 JabColorF magenta; member in struct:_PrimaryJabColors
64 JabColorF magenta; member in struct:_PrimaryJabColors
81 XYZColorF magenta; member in struct:_PrimaryXYZColors
  /external/eigen/test/eigen2/
runtest.sh 8 magenta='\E[35m'
  /external/eigen/blas/testing/
runblastest.sh 8 magenta='\E[35m'
  /external/pdfium/fpdfsdk/src/javascript/
color.h 25 FX_BOOL magenta(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
75 JS_STATIC_PROP(magenta, color);
color.cpp 30 JS_STATIC_PROP_ENTRY(magenta)
156 JS_IMPLEMENT_COLORPROP(magenta, m_crMagenta)
  /external/ImageMagick/Magick++/lib/Magick++/
Color.h 41 // Magenta = green
46 // Magenta = green
137 // Green/Magenta color (range 0 to QuantumRange)
221 // Magenta color (range 0 to 1.0)
222 void magenta(const double magenta_);
223 double magenta(void) const;
  /external/chromium-trace/catapult/third_party/flot/
jquery.colorhelpers.min.js 1 (function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i<c.length;++i)o[c.charAt(i)]+=d;return o.normalize()};o.scale=function(c,f){for(var i=0;i<c.length;++i)o[c.charAt(i)]*=f;return o.normalize()};o.toString=function(){if(o.a>=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return value<min?min:value>max?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203 (…)
jquery.colorhelpers.js 167 magenta:[255,0,255],
  /external/opencv3/modules/viz/include/opencv2/viz/
types.hpp 80 static Color magenta();
281 inline cv::viz::Color cv::viz::Color::magenta() { return Color(255, 0, 255); } function in class:cv::viz::Color
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 95 Color magenta = display.getSystemColor(SWT.COLOR_MAGENTA); local
142 graph.addItem("reference", label, dim.getDisplayValue(value), value, magenta, true, Utils.getDateFromBuildID(buildID, true), true, drawBaseline);
147 graph.addItem("reference", label, dim.getDisplayValue(value), value, magenta, false, Utils.getDateFromBuildID(buildID, true), false);
297 stream.print("Black and yellow points plot values measured in integration and last seven nightly builds.<br>\n" + "Magenta points plot the repeated baseline measurement over time.<br>\n"
  /external/ImageMagick/Magick++/lib/
Color.cpp 452 magenta(magenta_);
462 magenta(magenta_);
508 void Magick::ColorCMYK::magenta(const double magenta_) function in class:Magick::ColorCMYK
513 double Magick::ColorCMYK::magenta(void) const function in class:Magick::ColorCMYK
  /external/ImageMagick/www/api/
pixel-wand.php 691 <p>PixelGetMagenta() returns the normalized magenta color of the pixel wand.</p>
713 <p>PixelGetMagentaQuantum() returns the magenta color of the pixel wand.</p>
    [all...]
constitute.php 89 <dd> This string reflects the expected ordering of the pixel array. It can be any combination or order of R = red, G = green, B = blue, A = alpha (0 is transparent), O = opacity (0 is opaque), C = cyan, Y = yellow, M = magenta, K = black, I = intensity (for grayscale), P = pad. </dd>
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 95 CMYK_EXT Color Cyan, Magenta, Yellow, Black components
96 CMYKA_EXT Color Cyan, Magenta, Yellow, Black, A components
181 CMYK_EXT cyan magenta yellow black
  /external/ImageMagick/MagickWand/
pixel-wand.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
BinPacker.java 308 Color.green, Color.magenta, Color.orange,
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePacker.java 220 g.setColor(Color.magenta);
231 g.setColor(Color.magenta);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
GradientPanel.java 96 hueSlider = new ColorSlider(new Color[] {Color.red, Color.yellow, Color.green, Color.cyan, Color.blue, Color.magenta,
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
GradientPanel.java 97 hueSlider = new ColorSlider(new Color[] {Color.red, Color.yellow, Color.green, Color.cyan, Color.blue, Color.magenta,
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DumbTextComponent.java 562 g.setColor(Color.magenta);

Completed in 865 milliseconds

1 2