/external/opencv/otherlibs/highgui/ |
grfmt_imageio.h | 24 bool ReadData( uchar* data, int step, int color );
|
grfmt_png.h | 60 bool ReadData( uchar* data, int step, int color );
|
grfmt_pxm.h | 57 bool ReadData( uchar* data, int step, int color );
|
image.cpp | 116 int color = desired_color; local 119 if( color < 0 ) 120 color = img->nChannels > 1; 123 (!color ? 1 : img->nChannels > 1 ? img->nChannels : 3)*8, 248 void CvvImage::Fill( int color ) 250 cvSet( m_img, cvScalar(color&255,(color>>8)&255,(color>>16)&255,(color>>24)&255) );
|
/external/quake/quake/src/QW/client/ |
d_iface.h | 43 float color; member in struct:particle_s 88 float u, v, zi, color; member in struct:__anon14128 106 int color; member in struct:__anon14130 165 void D_FillRect (vrect_t *vrect, int color);
|
/external/quake/quake/src/WinQuake/ |
d_iface.h | 44 float color;
member in struct:particle_s 89 float u, v, zi, color;
member in struct:__anon14411 107 int color;
member in struct:__anon14413 166 void D_FillRect (vrect_t *vrect, int color);
|
/external/regex-re2/benchlog/ |
mktable | 27 %color = ( 59 my $color = $color{$who}; 60 printf JGR "marktype none color $color linethickness 2 linetype solid label : $who\n";
|
/external/skia/include/utils/ |
SkParse.h | 22 static const char* FindNamedColor(const char str[], size_t len, SkColor* color);
|
/external/skia/legacy/include/utils/ |
SkParse.h | 22 static const char* FindNamedColor(const char str[], size_t len, SkColor* color);
|
/external/skia/legacy/src/animator/ |
SkDrawColor.h | 17 DECLARE_DRAW_MEMBER_INFO(Color); 32 SkColor color; member in class:SkDrawColor
|
/external/skia/legacy/src/opts/ |
SkBlitRow_opts_none.cpp | 33 SkColor color) {
|
/external/skia/src/animator/ |
SkDrawColor.h | 17 DECLARE_DRAW_MEMBER_INFO(Color); 32 SkColor color; member in class:SkDrawColor
|
/external/skia/src/opts/ |
SkBlitRow_opts_arm.h | 26 SkPMColor color);
|
SkBlitRow_opts_none.cpp | 33 SkColor color) {
|
/external/webkit/Source/WebCore/platform/wx/wxcode/ |
non-kerned-drawing.h | 40 extern void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point);
|
/external/webkit/Source/WebCore/rendering/style/ |
BorderValue.h | 28 #include "Color.h" 67 const Color& color() const { return m_color; } function in class:WebCore::BorderValue 72 Color m_color;
|
StyleBackgroundData.h | 28 #include "Color.h" 49 const Color& color() const { return m_color; } function in class:WebCore::StyleBackgroundData 59 Color m_color;
|
StyleInheritedData.h | 28 #include "Color.h" 58 Color color; member in class:WebCore::StyleInheritedData
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/ |
scrollbar.edc | 88 color: 255 255 255 0; 97 color: 255 255 255 255; 103 color: 255 255 255 64; 134 color: 255 255 255 0; 265 color: 255 255 255 0; 274 color: 255 255 255 255; 280 color: 255 255 255 64; 312 color: 255 255 255 0;
|
/frameworks/rs/driver/ |
rsdFrameBuffer.cpp | 49 // Now attach color targets 51 DrvAllocation *color = NULL; local 53 color = (DrvAllocation *)fb->mHal.state.colorTargets[i]->mHal.drv; 55 if (color->uploadDeferred) { 60 fbo->setColorTarget(color, i);
|
/hardware/libhardware/include/hardware/ |
lights.h | 37 * light to a reasonable color when the BUTTONS are lit. 92 * The color of the LED in ARGB. 98 * unsigned char brightness = ((77*((color>>16)&0x00ff)) 99 * + (150*((color>>8)&0x00ff)) + (29*(color&0x00ff))) >> 8; 105 unsigned int color; member in struct:light_state_t
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
SweepGradientTest.java | 22 import android.graphics.Color; 48 mBitmap.eraseColor(Color.TRANSPARENT); 53 final int[] colors = new int[] { Color.GREEN, Color.RED }; 62 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE }; 72 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE, Color.GREEN } 93 int color; local [all...] |
/external/skia/src/core/ |
SkMaskGamma.h | 18 * perceptual color spaces. 21 * Luminance is used to specify a luminance value in an arbitrary color space [0.0, 1.0]. 27 /** Converts a color component luminance in the color space to a linear luma. */ 29 /** Converts a linear luma to a color component luminance in the color space. */ 32 /** Converts a color to a luminance value. */ 107 * @param paint The color space in which the paint color was chosen. 108 * @param device The color space of the target device [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
PlatformGraphicsContext.h | 66 virtual bool setFillColor(const Color& c); 74 virtual bool setStrokeColor(const Color& c); 115 int /* offset */, const Color& color) = 0; 118 const Color& backgroundColor, ColorSpace colorSpace, 127 void fillRect(const FloatRect& rect, const Color& color, ColorSpace) { 128 fillRect(rect, color); 130 virtual void fillRect(const FloatRect& rect, const Color& color) = 0 159 SkColor color; \/\/ alpha>0 means valid shadow member in struct:WebCore::PlatformGraphicsContext::ShadowRec [all...] |
/hardware/msm7k/liblights/ |
lights.c | 126 return state->color & 0x00ffffff; 152 int color = state->color & 0x00ffffff; local 153 return ((77*((color>>16)&0x00ff)) 154 + (150*((color>>8)&0x00ff)) + (29*(color&0x00ff))) >> 8; 220 colorRGB = state->color; 314 ALOGV("set_light_notifications g_trackball=%d color=0x%08x", 315 g_trackball, state->color); 329 ALOGV("set_light_attention g_trackball=%d color=0x%08x" [all...] |