HomeSort by relevance Sort by last modified time
    Searched refs:blue (Results 1 - 25 of 999) 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/robolectric/v1/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 "android.os.cts", "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/mesa3d/src/glsl/glcpp/tests/
020-define-func-2-arg-multi.c 2 foo(one fish, blue fish)
  /external/clang/www/demo/
syntax.css 4 .llvm_keyword { font-weight: bold; color: blue }
  /external/slf4j/slf4j-jcl/src/test/java/org/slf4j/
InvocationTest.java 101 Marker blue = MarkerFactory.getMarker("BLUE"); local
102 logger.debug(blue, "hello");
103 logger.info(blue, "hello");
104 logger.warn(blue, "hello");
105 logger.error(blue, "hello");
107 logger.debug(blue, "hello {}", "world");
108 logger.info(blue, "hello {}", "world");
109 logger.warn(blue, "hello {}", "world");
110 logger.error(blue, "hello {}", "world")
    [all...]
  /external/slf4j/slf4j-nop/src/test/java/org/slf4j/
InvocationTest.java 95 Marker blue = MarkerFactory.getMarker("BLUE"); local
96 logger.debug(blue, "hello");
97 logger.info(blue, "hello");
98 logger.warn(blue, "hello");
99 logger.error(blue, "hello");
101 logger.debug(blue, "hello {}", "world");
102 logger.info(blue, "hello {}", "world");
103 logger.warn(blue, "hello {}", "world");
104 logger.error(blue, "hello {}", "world")
    [all...]
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/
InvocationTest.java 107 Marker blue = MarkerFactory.getMarker("BLUE"); local
108 logger.debug(blue, "hello");
109 logger.info(blue, "hello");
110 logger.warn(blue, "hello");
111 logger.error(blue, "hello");
113 logger.debug(blue, "hello {}", "world");
114 logger.info(blue, "hello {}", "world");
115 logger.warn(blue, "hello {}", "world");
116 logger.error(blue, "hello {}", "world")
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChromaticities.cpp 50 const Imath::V2f &blue,
55 blue (blue),
84 float d = chroma.red.x * (chroma.blue.y - chroma.green.y) +
85 chroma.blue.x * (chroma.green.y - chroma.red.y) +
86 chroma.green.x * (chroma.red.y - chroma.blue.y);
88 float Sr = (X * (chroma.blue.y - chroma.green.y) -
89 chroma.green.x * (Y * (chroma.blue.y - 1) +
90 chroma.blue.y * (X + Z)) +
91 chroma.blue.x * (Y * (chroma.green.y - 1)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_lut.rs 21 short blue[256];
28 tmp.b = blue[in.b];
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 12 + Math.abs(Color.blue(color) - Color.blue(expectedColor));
22 int average = Color.red(color) + Color.green(color) + Color.blue(color);
26 && Math.abs(Color.blue(color) - average) <= threshold;
  /external/eigen/test/
runtest.sh 7 blue='\E[34m'
14 echo -e $blue
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUDisplay.java 38 public void setColor(int index, int red, int green, int 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
  /frameworks/base/graphics/java/android/graphics/
Color.java 30 * green, blue. The values are unpremultiplied, meaning any transparency is
33 * (green << 8) | blue. Each component ranges between 0..255 with 0
36 * no contributions from red, green, or blue), and opaque-white would be
47 @ColorInt public static final int BLUE = 0xFF0000FF;
78 * Return the blue component of a color int. This is the same as saying
81 public static int blue(int color) { method in class:Color
86 * Return a color-int from red, green, blue components.
93 * @param blue Blue component [0..255] of the color
96 public static int rgb(int red, int green, int blue) {
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
chameneosredux.go 45 blue = iota
53 red | yellow<<2: blue,
54 red | blue<<2: yellow,
55 yellow | red<<2: blue,
57 yellow | blue<<2: red,
58 blue | red<<2: yellow,
59 blue | yellow<<2: red,
60 blue | blue<<2: blue,
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
chameneosredux.go 45 blue = iota
53 red | yellow<<2: blue,
54 red | blue<<2: yellow,
55 yellow | red<<2: blue,
57 yellow | blue<<2: red,
58 blue | red<<2: yellow,
59 blue | yellow<<2: red,
60 blue | blue<<2: blue,
    [all...]
  /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/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
InvocationTest.java 123 Marker blue = MarkerFactory.getMarker("BLUE"); local
124 logger.trace(blue, "hello");
125 logger.debug(blue, "hello");
126 logger.info(blue, "hello");
127 logger.warn(blue, "hello");
128 logger.error(blue, "hello");
130 logger.debug(blue, "hello {}", "world");
131 logger.info(blue, "hello {}", "world");
132 logger.warn(blue, "hello {}", "world")
    [all...]
  /external/skia/src/codec/
SkMasks.cpp 134 masks.blue &= (1 << bitsPerPixel) - 1;
139 if (((masks.red & masks.green) | (masks.red & masks.blue) |
140 (masks.red & masks.alpha) | (masks.green & masks.blue) |
141 (masks.green & masks.alpha) | (masks.blue & masks.alpha)) != 0) {
148 const MaskInfo blue = process_mask(masks.blue, bitsPerPixel); local
151 return new SkMasks(red, green, blue, alpha);
156 const MaskInfo& blue, const MaskInfo& alpha)
159 , fBlue(blue)
  /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/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/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/selinux/policycoreutils/mcstrans/share/examples/non-mls-color/
secolor.conf 5 color blue = #0000ff

Completed in 522 milliseconds

1 2 3 4 5 6 7 8 91011>>