HomeSort by relevance Sort by last modified time
    Searched full:rgbcolor (Results 1 - 25 of 50) sorted by null

1 2

  /external/eigen/bench/btl/data/
perlib_plot_settings.txt 1 eigen3 ; with lines lw 4 lt 1 lc rgbcolor "black"
2 eigen2 ; with lines lw 3 lt 1 lc rgbcolor "#999999"
3 EigenBLAS ; with lines lw 3 lt 3 lc rgbcolor "#999999"
4 eigen3_novec ; with lines lw 2 lt 1 lc rgbcolor "#999999"
5 eigen3_nogccvec ; with lines lw 2 lt 2 lc rgbcolor "#991010"
6 INTEL_MKL ; with lines lw 3 lt 1 lc rgbcolor "#ff0000"
7 ATLAS ; with lines lw 3 lt 1 lc rgbcolor "#008000"
8 gmm ; with lines lw 3 lt 1 lc rgbcolor "#0000ff"
9 ublas ; with lines lw 3 lt 1 lc rgbcolor "#00b7ff"
10 mtl4 ; with lines lw 3 lt 1 lc rgbcolor "#d18847
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
RGBColor.cpp 29 #include "core/css/RGBColor.h"
33 PassRefPtr<RGBColor> RGBColor::create(unsigned rgbColor)
35 return adoptRef(new RGBColor(rgbColor));
38 PassRefPtr<CSSPrimitiveValue> RGBColor::red()
46 PassRefPtr<CSSPrimitiveValue> RGBColor::green()
54 PassRefPtr<CSSPrimitiveValue> RGBColor::blue()
62 PassRefPtr<CSSPrimitiveValue> RGBColor::alpha(
    [all...]
RGBColor.h 37 class RGBColor : public RefCounted<RGBColor> {
39 static PassRefPtr<RGBColor> create(unsigned rgbColor);
49 RGBColor(unsigned rgbColor)
50 : m_rgbColor(rgbColor)
RGBColor.idl 22 ] interface RGBColor {
CSSPrimitiveValue.cpp 32 #include "core/css/RGBColor.h"
273 m_value.rgbcolor = color;
859 PassRefPtr<RGBColor> CSSPrimitiveValue::getRGBColorValue(ExceptionState& exceptionState) const
867 return RGBColor::create(m_value.rgbcolor);
1045 RGBA32 rgbColor = m_value.rgbcolor
    [all...]
CSSPrimitiveValue.idl 65 [RaisesException] RGBColor getRGBColorValue();
CSSPrimitiveValue.h 43 class RGBColor;
295 PassRefPtr<RGBColor> getRGBColorValue(ExceptionState&) const;
296 RGBA32 getRGBA32Value() const { return m_primitiveUnitType != CSS_RGBCOLOR ? 0 : m_value.rgbcolor; }
380 unsigned rgbcolor; member in union:WebCore::CSSPrimitiveValue::__anon13344
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGColor.h 32 class RGBColor;
43 static PassRefPtr<SVGColor> createFromString(const String& rgbColor)
46 color->setColor(colorFromRGBColorString(rgbColor));
50 static PassRefPtr<SVGColor> createFromColor(const Color& rgbColor)
53 color->setColor(rgbColor);
64 PassRefPtr<RGBColor> rgbColor() const;
68 void setRGBColor(const String& rgbColor, ExceptionState&);
69 void setRGBColorICCColor(const String& rgbColor, const String& iccColor, ExceptionState&);
70 void setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionState&)
    [all...]
SVGColor.idl 29 readonly attribute RGBColor rgbColor;
32 [StrictTypeChecking, RaisesException] void setRGBColor(DOMString rgbColor);
34 [StrictTypeChecking, RaisesException] void setRGBColorICCColor(DOMString rgbColor, DOMString iccColor);
36 [StrictTypeChecking, RaisesException] void setColor(unsigned short colorType, DOMString rgbColor, DOMString iccColor);
SVGColor.cpp 27 #include "core/css/RGBColor.h"
43 PassRefPtr<RGBColor> SVGColor::rgbColor() const
45 return RGBColor::create(m_color.rgb());
SVGPaint.idl 42 [StrictTypeChecking, RaisesException] void setPaint(unsigned short paintType, DOMString uri, DOMString rgbColor, DOMString iccColor);
SVGPaint.h 93 void setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const String& iccColor, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
README.dygraph.txt 45 - rgbcolor.js (Public Domain)
50 rgbcolor: http://www.phpied.com/rgb-color-parser-in-javascript/
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aepack.py 22 aetypes.RGBColor(0x7000, 0x6000, 0x5000),
test_gl.py 12 glattrs = ['RGBcolor', 'RGBcursor', 'RGBmode', 'RGBrange', 'RGBwritemask',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aepack.py 22 aetypes.RGBColor(0x7000, 0x6000, 0x5000),
test_gl.py 12 glattrs = ['RGBcolor', 'RGBcursor', 'RGBmode', 'RGBrange', 'RGBwritemask',
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymactoolbox.h 148 extern PyObject *QdRGB_New(RGBColor *);
149 extern int QdRGB_Convert(PyObject *, RGBColor *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymactoolbox.h 148 extern PyObject *QdRGB_New(RGBColor *);
149 extern int QdRGB_Convert(PyObject *, RGBColor *);
  /external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
SDL_dspvideo.c 209 RGBColor alpha; // alpha color
210 RGBColor trans; // transparent color
935 RGBColor rgb = { 0.0, 0.0, 0.0 };
980 RGBColor black = { 0, 0, 0 };
981 RGBColor white = { 0xFFFF, 0xFFFF, 0xFFFF };
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
MacTextEditor.py 210 # kTXNQDFontColorAttributeSize = sizeof(RGBColor)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 365 class RGBColor:
374 return "RGBColor(%r, %r, %r)" % (self.r, self.g, self.b)
384 return isinstance(x, RGBColor)
aepack.py 222 return aetypes.RGBColor(r, g, b)
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
lscript.php 118 'rewind', 'rgb', 'rgbambient', 'rgbcolor', 'rgbspot',
  /external/qemu/distrib/sdl-1.2.15/src/video/macrom/
SDL_romvideo.c 367 RGBColor saveRGB;
368 RGBColor blackRGB = { 0, 0, 0 };

Completed in 4372 milliseconds

1 2