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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 23 public final int blue; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
29 this.blue = blue;
33 public GLColor(int red, int green, int blue) {
36 this.blue = blue;
46 blue == color.blue &&
  /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)
57 if ( blue < MIN_GAMMA ) {
58 gamma.blue = MIN_GAMMA;
60 if ( blue > MAX_GAMMA ) {
61 gamma.blue = MAX_GAMMA;
63 gamma.blue = blue;
71 gamma_saved[2] = gamma.blue;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue)
88 result = X11_SetGammaNoLock(this, red, green, blue);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowColor.java 11 public static int rgb(int red, int green, int blue) {
12 return argb(0xff, red, green, blue);
16 public static int argb(int alpha, int red, int green, int blue) {
17 return (alpha << 24) | (red << 16) | (green << 8) | blue;
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorProcessTest.java 48 private IParcelFileDescriptorPeer blue; field in class:ParcelFileDescriptorProcessTest
95 "com.android.cts.os", "android.os.cts.ParcelFileDescriptorPeer$Blue"));
103 blue = blueConn.get();
104 red.setPeer(blue);
105 blue.setPeer(red);
124 // red <-- blue
126 blue.doGet();
128 blue.write(1);
131 blue.close();
137 // red --> blue
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
ColorDistance.cpp 29 return Color(first.red() + second.red(), first.green() + second.green(), first.blue() + second.blue());
36 int blueDiff = toColor.blue() - fromColor.blue();
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
020-define-func-2-arg-multi.c 2 foo(one fish, blue fish)
  /external/mesa3d/src/glsl/glcpp/tests/
020-define-func-2-arg-multi.c 2 foo(one fish, blue fish)
  /external/chromium_org/third_party/WebKit/Source/core/css/
RGBColor.idl 26 readonly attribute CSSPrimitiveValue blue;
  /external/clang/www/demo/
syntax.css 4 .llvm_keyword { font-weight: bold; color: blue }
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_lut.rs 21 short blue[256];
28 tmp.b = blue[in.b];
  /external/eigen/test/
runtest.sh 7 blue='\E[34m'
14 echo -e $blue
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 12 + Math.abs(Color.blue(color) - Color.blue(expectedColor));
  /external/eigen/blas/testing/
runblastest.sh 7 blue='\E[34m'
22 echo -e $blue
30 echo -e $blue
38 echo -e $blue
  /external/eigen/test/eigen2/
runtest.sh 7 blue='\E[34m'
15 echo -e $blue
24 echo -e $blue
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ColorMac.mm 42 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0]));
46 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1]));
50 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1]));
65 blue:static_cast<CGFloat>(color.blue()) / 255
  /sdk/eclipse/scripts/
_mk_icons.sh 9 icon S blue sharedUserId
19 icon U blue uses-permission
22 icon L blue label
24 icon A blue application
26 icon P blue persistent
29 icon T blue theme
38 icon S blue service
40 icon C blue clearOnBackground
45 icon F blue intent-filter
54 icon P blue pat
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_gamma.c 93 int SDL_SetGamma(float red, float green, float blue)
106 CalculateGammaRamp(blue, ramp[2]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue)
134 CalculateGammaFromRamp(blue, ramp[2]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue)
169 if ( blue ) {
170 SDL_memcpy(&video->gamma[2*256], blue, 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 20 int blue = Color.blue(color) / 8; local
24 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)2,(byte)blue);
28 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)5,(byte)blue);
32 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)8,(byte)blue);
  /cts/tools/signature-tools/templates/
Styles.st 6 a.default:link {color: blue; text-decoration: none}
7 a.default:hover {color: blue; text-decoration: underline;}
8 a.default:visited {color: blue; text-decoration: none}
  /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
43 assertTrue(Color.blue(b.getPixel(10, 0)) > Color.blue(b.getPixel(10, 5)));
44 assertTrue(Color.blue(b.getPixel(10, 5)) > Color.blue(b.getPixel(10, 10)));
53 lg = new LinearGradient(0, 0, 0, 40, Color.RED, Color.BLUE, TileMode.CLAMP);
58 // RED -> BLUE, R sub-value decreasing while B sub-value increasing
61 assertTrue(Color.blue(b.getPixel(10, 0)) < Color.blue(b.getPixel(10, 15)))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
accum.h 50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
  /external/mesa3d/src/mesa/main/
accum.h 50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_vertex.h 36 GLubyte alpha, blue, green, red; member in struct:__anon18201
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon18202
46 GLubyte blue, green, red, alpha;
  /external/clang/test/CodeGenCXX/
scoped-enums.cpp 4 enum class Color { red, blue, green }; member in class:Color

Completed in 1665 milliseconds

1 2 3 4 5 6 7 8 91011>>