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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/scripts/
_mk_icons.sh 8 icon M green manifest
11 icon P green package
13 icon I green instrumentation
14 icon F green functionalTest
15 icon H green handleProfiling
16 icon I green icon
17 icon T green targetPackage
21 icon N green name
27 icon P green process
28 icon T green taskAffinit
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 22 public final int green; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
28 this.green = green;
33 public GLColor(int red, int green, int blue) {
35 this.green = green;
45 green == color.green &&
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11gamma_c.h 27 extern int X11_SetVidModeGamma(_THIS, float red, float green, float blue);
28 extern int X11_GetVidModeGamma(_THIS, float *red, float *green, float *blue);
SDL_x11gamma.c 33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue)
49 if ( green < MIN_GAMMA ) {
50 gamma.green = MIN_GAMMA;
52 if ( green > MAX_GAMMA ) {
53 gamma.green = MAX_GAMMA;
55 gamma.green = green;
70 gamma_saved[1] = gamma.green;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue)
88 result = X11_SetGammaNoLock(this, red, green, blue)
    [all...]
  /external/clang/test/CodeGenCXX/
scoped-enums.cpp 4 enum class Color { red, blue, green };
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ColorGtk.cpp 29 : m_color(makeRGB(c.red >> 8, c.green >> 8, c.blue >> 8))
37 static_cast<int>(c.green * 255),
46 double red, green, blue, alpha; local
47 getRGBA(red, green, blue, alpha);
48 GdkRGBA rgba = { red, green, blue, alpha };
  /external/clang/www/demo/
syntax.css 3 .llvm_type { font-style: oblique; color: green }
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ColorHaiku.cpp 36 : m_color(makeRGBA(color.red, color.green, color.blue, color.alpha))
43 return make_color(red(), green(), blue(), alpha());
GradientHaiku.cpp 59 color.green = static_cast<uint8>(stop.green * 255);
  /external/webkit/Source/WebCore/platform/graphics/qt/
ColorQt.cpp 36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha()))
44 return QColor(red(), green(), blue(), alpha());
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 76 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values)
78 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255;
79 double g = values[5] * red + values[6] * green + values[7] * blue + values[8] * alpha + values[9] * 255;
80 double b = values[10] * red + values[11] * green + values[12] * blue + values[13] * alpha + values[14] * 255;
81 double a = values[15] * red + values[16] * green + values[17] * blue + values[18] * alpha + values[19] * 255;
84 green = g;
89 inline void saturate(double& red, double& green, double& blue, const float& s)
91 double r = (0.213 + 0.787 * s) * red + (0.715 - 0.715 * s) * green + (0.072 - 0.072 * s) * blue;
92 double g = (0.213 - 0.213 * s) * red + (0.715 + 0.285 * s) * green + (0.072 - 0.072 * s) * blue;
93 double b = (0.213 - 0.213 * s) * red + (0.715 - 0.715 * s) * green + (0.072 + 0.928 * s) * blue
133 double green = pixelArray->get(pixelByteOffset + 1); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 19 public float intensity, red, green, blue, alpha; field in class:TexturePixel
30 this.green = pixel.green;
43 this.green = colorRGBA.g;
56 * the green value
63 this.green = g;
79 this.green = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
105 this.green = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
114 this.green = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
125 this.green = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_gamma.c 93 int SDL_SetGamma(float red, float green, float blue)
105 CalculateGammaRamp(green, ramp[1]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue)
133 CalculateGammaFromRamp(green, ramp[1]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue)
166 if ( green ) {
167 SDL_memcpy(&video->gamma[1*256], green, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheelLEDController.java 19 int green = Color.green(color) / 8; local
23 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)1,(byte)green);
27 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)4,(byte)green);
31 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)7,(byte)green);
  /external/webkit/Source/WebCore/svg/
ColorDistance.cpp 38 , m_greenDiff(toColor.green() - fromColor.green())
69 clampColorValue(first.green() + second.green()),
76 clampColorValue(color.green() + m_greenDiff),
  /external/webkit/Source/WebCore/platform/graphics/mac/
ColorMac.mm 59 [c getRed:&redComponent green:&greenComponent blue:&blueComponent alpha:&alpha];
75 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0]));
79 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1]));
83 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1]));
97 green:static_cast<CGFloat>(color.green()) / 255
  /cts/tests/tests/graphics/src/android/graphics/cts/
LinearGradientTest.java 34 int[] color = { Color.BLUE, Color.GREEN, Color.RED };
42 // BLUE -> GREEN, B sub-value decreasing while G sub-value increasing
45 assertTrue(Color.green(b.getPixel(10, 0)) < Color.green(b.getPixel(10, 5)));
46 assertTrue(Color.green(b.getPixel(10, 5)) < Color.green(b.getPixel(10, 10)));
47 // GREEN -> RED, G sub-value decreasing while R sub-value increasing
48 assertTrue(Color.green(b.getPixel(10, 15)) > Color.green(b.getPixel(10, 20)));
49 assertTrue(Color.green(b.getPixel(10, 20)) > Color.green(b.getPixel(10, 25)))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
ColorWx.cpp 36 m_color = makeRGBA((int)color.Red(), (int)color.Green(), (int)color.Blue(), (int)color.Alpha());
41 return wxColour(red(), green(), blue(), alpha());
  /gdk/samples/PhotoEditor/jni/
whiteblack.cpp 77 int32_t green = src->rgba8[1]; local
82 int32_t xform_green = xform[green];
86 green = xform[green + 1] - xform_green;
91 int32_t diff_green = green * dither >> 8;
95 green = (xform_green + diff_green - (green >> 1)) >> 8;
99 green = clamp(green, 0, 255);
102 *dst = (alpha << 24) | (blue << 16) | (green << 8) | red
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Color.java 27 * green, blue. The values are unpremultiplied, meaning any transparency is
30 * (green << 8) | blue. Each component ranges between 0..255 with 0
33 * no contributions from red, green, or blue), and opaque-white would be
43 public static final int GREEN = 0xFF00FF00;
67 * Return the green component of a color int. This is the same as saying
70 public static int green(int color) { method in class:Color
83 * Return a color-int from red, green, blue components.
89 * @param green Green component [0..255] of the color
92 public static int rgb(int red, int green, int blue)
259 float green = 0.0f; local
    [all...]
  /external/skia/src/animator/
SkDrawColor.cpp 26 SkScalar green = SkIntToScalar(SkColorGetG(color)); local
28 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
29 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
42 hue = SkScalarMul(green - blue, part60);
46 else if (green == value)
49 hue = 240 * SK_Scalar1 + SkScalarMul(red - green, part60);
66 SkScalar green SK_INIT_TO_AVOID_WARNING;
69 red = green = blue = value;
79 case 0: red = value; green = t; blue = p; break;
80 case 1: red = q; green = value; blue = p; break
    [all...]
  /sdk/traceview/src/com/android/traceview/
ColorController.java 35 new RGB(0, 240, 0), // green
41 new RGB(150, 255, 150), // light green
45 new RGB(0, 120, 0), // dark green
59 return requestColor(display, rgb.red, rgb.green, rgb.blue);
63 return requestColorSquare(display, rgb.red, rgb.green, rgb.blue);
66 public static Color requestColor(Display display, int red, int green, int blue) {
67 int key = (red << 16) | (green << 8) | blue;
70 color = new Color(display, red, green, blue);
76 public static Image requestColorSquare(Display display, int red, int green, int blue) {
77 int key = (red << 16) | (green << 8) | blue
    [all...]
  /external/libpng/contrib/gregbook/
readpng.c 154 int readpng_get_bgcolor(uch *red, uch *green, uch *blue)
172 * takes a pointer to a pointer, and it always returns valid red, green
183 *green = pBackground->green >> 8;
187 *red = *green = *blue = pBackground->gray? 255 : 0;
189 *red = *green = *blue = (255/3) * pBackground->gray;
191 *red = *green = *blue = (255/15) * pBackground->gray;
194 *green = (uch)pBackground->green;
  /external/webkit/Source/WebCore/css/
RGBColor.idl 26 readonly attribute CSSPrimitiveValue green;
  /hardware/samsung_slsi/exynos5/include/
s3c-fb.h 30 unsigned char green; member in struct:s3c_fb_user_plane_alpha
37 unsigned char green; member in struct:s3c_fb_user_chroma

Completed in 742 milliseconds

1 2 3 4 5 6 7 8 91011>>