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

1 2 3 4 5 6 7 8 91011

  /packages/apps/Gallery2/jni/filters/
negative.c 30 dst[BLUE] = 255 - dst[BLUE];
exposure.c 33 rgb[BLUE] = clamp((255*(rgb[BLUE]))/m);
contrast.c 52 rgb[BLUE] = clamp((int)(m*rgb[BLUE]+c));
bwfilter.c 44 float b = sb *rgb[BLUE];
52 rgb[BLUE] = rgb[RED];
gradient.c 52 int b = destination[BLUE];
54 destination[BLUE] = b;
hue.c 32 int b = rgb[BLUE];
40 rgb[BLUE] = clamp((int)bf);
saturated.c 38 int b = destination[BLUE];
50 destination[BLUE] = CLAMP(Bc);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
MockEnum.java 29 RED, BLUE, YELLO
43 samEnum = Sample2.BLUE;
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapShaderTest.java 40 private static final int BORDER_COLOR = Color.BLUE;
103 bitmap.setPixel(1, 0, Color.BLUE);
117 Assert.assertArrayEquals(new int[] { Color.RED, Color.BLUE, Color.BLUE, Color.BLUE },
125 bitmap.setPixel(1, 0, Color.BLUE);
139 Assert.assertArrayEquals(new int[] { Color.RED, Color.BLUE, Color.RED, Color.BLUE },
147 bitmap.setPixel(1, 0, Color.BLUE);
161 Assert.assertArrayEquals(new int[] { Color.RED, Color.BLUE, Color.BLUE, Color.RED }
    [all...]
PorterDuffXfermodeTest.java 46 b2.eraseColor(Color.BLUE);
54 assertEquals(Color.BLUE, target.getPixel(WIDTH / 4, HEIGHT * 3 / 4));
55 assertEquals(Color.BLUE, target.getPixel(WIDTH * 3 / 4, HEIGHT * 3 / 4));
73 assertEquals(Color.BLUE, target.getPixel(WIDTH * 3 / 4, HEIGHT * 3 / 4));
  /frameworks/base/tools/aapt2/compile/
NinePatch_test.cpp 26 #define BLUE "\x00\x00\xff\xff"
60 (uint8_t*)BLACK RED BLUE RED BLUE BLUE RED BLUE RED WHITE,
61 (uint8_t*)BLACK RED BLUE RED BLUE BLUE RED BLUE RED WHITE,
62 (uint8_t*)WHITE RED BLUE RED BLUE BLUE RED BLUE RED WHITE
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
RggbChannelVector.java 39 /** Blue color channel in a bayer Raw pattern. */
40 public static final int BLUE = 3;
54 * @param blue blue pixel
59 final float blue) {
63 mBlue = checkArgumentFinite(blue, "blue");
94 * Get the blue component.
106 * {@link #BLUE}.</p>
125 case BLUE
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/offscreen/
ColorChangeOnKeyView.java 27 * Changes color from black to blue on keyevent
42 mColor = Color.BLUE;
  /cts/tests/tests/toastlegacy/src/android/widget/toast/cts/legacy/
ToastActivity.java 34 view.setBackgroundColor(Color.BLUE);
  /frameworks/native/services/surfaceflinger/
Colorizer.h 33 BLUE = 34,
  /cts/tests/tests/text/src/android/text/style/cts/
ClickableSpanTest.java 49 tp.linkColor = Color.BLUE;
51 assertEquals(Color.BLUE, tp.getColor());
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
BitmapTests.java 58 setColor(Color.BLUE);
78 * be visible: we changed a bitmap from blue to red during circular reveal (an RT animation),
79 * and changed it back to blue before the end of the animation; we should never see any
128 child.setColor(Color.BLUE);
148 * visible: we keep changing a bitmap's color between red and blue in sync with the
149 * background, and we should only see pure blue or red.
159 int[] blue = new int[offset + height * stride]; local
160 Arrays.fill(blue, Color.BLUE);
162 boolean isBlue = comparer.verifySame(blue, bitmap, offset, stride, width, height)
    [all...]
PathClippingTests.java 55 paint.setColor(Color.BLUE);
70 canvas.drawColor(Color.BLUE);
87 canvas.drawColor(Color.BLUE);
119 Color.BLUE,
146 Color.BLUE,
147 Color.BLUE,
162 canvas.drawColor(Color.BLUE);
197 helper.loadData("<body style=\"background-color:blue\">");
214 paint.setColor(Color.BLUE);
LayoutTests.java 42 new RectVerifier(Color.WHITE, Color.BLUE, new Rect(5, 5, 85, 85)));
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
EnumMultisetTest.java 50 BLUE, RED, YELLOW, GREEN, WHITE
62 assertEquals(0, ms.count(Color.BLUE));
70 assertEquals(0, ms.count(Color.BLUE));
98 ms.add(Color.BLUE, 3);
101 assertEquals("[BLUE x 3, RED x 2, YELLOW]", ms.toString());
106 ms.add(Color.BLUE, 3);
  /frameworks/support/v7/palette/tests/java/android/support/v7/graphics/
BucketTests.java 63 swatches.add(new Palette.Swatch(Color.BLUE, 10));
124 canvas.drawColor(Color.BLUE);
131 assertCloseColors(Color.BLUE, swatch.getRgb());
139 canvas.drawColor(Color.BLUE);
148 assertCloseColors(Color.BLUE, swatch.getRgb());
156 // First fill the canvas with blue
158 canvas.drawColor(Color.BLUE);
175 // Now assert that the dominant swatch is blue
178 assertCloseColors(Color.BLUE, swatch.getRgb());
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/view/
UnclippedBlueView.java 46 canvas.drawColor(Color.BLUE);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Layers.java 58 mPaint.setColor(Color.BLUE);
  /external/llvm/lib/DebugInfo/DWARF/
SyntaxHighlighting.cpp 27 case Tag: OS.changeColor(llvm::raw_ostream::BLUE); break;
  /frameworks/base/core/tests/coretests/src/android/graphics/
BitmapFactoryTest.java 34 new int[] { Color.BLUE }, 1, 1, Bitmap.Config.RGB_565);

Completed in 3186 milliseconds

1 2 3 4 5 6 7 8 91011