HomeSort by relevance Sort by last modified time
    Searched refs:blue (Results 1 - 25 of 820) 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/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 25 readonly attribute CSSPrimitiveValue blue;
  /external/clang/www/demo/
syntax.css 4 .llvm_keyword { font-weight: bold; color: blue }
  /external/chromium_org/third_party/WebKit/Source/core/svg/
ColorDistance.cpp 38 , m_blueDiff(toColor.blue() - fromColor.blue())
65 Color ColorDistance::clampColor(int red, int green, int blue, int alpha)
67 return Color(clampColorValue(red), clampColorValue(green), clampColorValue(blue), clampColorValue(alpha));
72 return Color(first.red() + second.red(), first.green() + second.green(), first.blue() + second.blue());
77 return Color(color.red() + m_redDiff, color.green() + m_greenDiff, color.blue() + m_blueDiff);
  /external/clang/test/CodeGenCXX/
scoped-enums.cpp 4 enum class Color { red, blue, green }; member in class:Color
  /external/eigen/test/
runtest.sh 7 blue='\E[34m'
14 echo -e $blue
  /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
  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 19 public float intensity, red, green, blue, alpha; field in class:TexturePixel
31 this.blue = pixel.blue;
44 this.blue = colorRGBA.b;
58 * the blue value
64 this.blue = b;
81 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
103 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
116 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
123 this.blue = 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)
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);
  /external/chromium_org/third_party/WebKit/Source/core/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]));
98 blue:static_cast<CGFloat>(color.blue()) / 255
  /external/chromium_org/cc/trees/
layer_tree_host_pixeltest_readback.cc 140 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
142 green->AddChild(blue);
158 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
160 green->AddChild(blue);
176 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
178 green->AddChild(blue);
286 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
288 green->AddChild(blue);
306 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
308 green->AddChild(blue);
325 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
344 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
365 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
386 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
407 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
429 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
451 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
519 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
549 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
580 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
612 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
710 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
741 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
772 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
803 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
832 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
    [all...]
  /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:__anon15308
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon15309
46 GLubyte blue, green, red, alpha;

Completed in 3271 milliseconds

1 2 3 4 5 6 7 8 91011>>