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

1 2 3 4 5 6

  /packages/apps/Gallery2/jni/filters/
negative.c 29 dst[GREEN] = 255 - dst[GREEN];
exposure.c 32 rgb[GREEN] = clamp((255*(rgb[GREEN]))/m);
contrast.c 51 rgb[GREEN] = clamp((int)(m*rgb[GREEN]+c));
bwfilter.c 43 float g = sg *rgb[GREEN];
51 rgb[GREEN] = rgb[RED];
gradient.c 46 int g = destination[GREEN];
48 destination[GREEN] = g;
hue.c 31 int g = rgb[GREEN];
39 rgb[GREEN] = clamp((int)gf);
saturated.c 37 int g = destination[GREEN];
49 destination[GREEN] = CLAMP(Gc);
vibrance.c 39 int g = destination[GREEN];
58 destination[GREEN] = CLAMP(Gc);
fx.c 66 int g = rgb[GREEN];
81 rgb[GREEN] = clamp(interp(lutrgb,p+1,off,dr,dg,db));
  /frameworks/base/media/java/android/media/videoeditor/
EffectColor.java 48 * Change the video frame color to the RGB color value GREEN
50 public static final int GREEN = 0x0000ff00;
100 case GREEN:
  /frameworks/native/services/surfaceflinger/
Colorizer.h 29 GREEN = 32,
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_writer.cc 35 GREEN,
104 case GREEN:
169 case GREEN:
259 color = SimpleConsole::GREEN;
  /cts/tests/tests/graphics/src/android/graphics/cts/
AvoidXfermodeTest.java 41 greenPaint.setColor(Color.GREEN);
63 assertEquals(Color.GREEN, b.getPixel(BASE_SIZE / 2, BASE_SIZE / 2));
PixelXorXfermodeTest.java 42 p.setXfermode(new PixelXorXfermode(Color.GREEN));
45 // white ^ green ^ cyan = yellow
47 // black ^ green ^ cyan = blue
51 p.setXfermode(new PixelXorXfermode(alphaColor(Color.GREEN, 25)));
61 int green = Color.green(color); local
63 return Color.argb(alpha, red, green, blue);
ComposeShaderTest.java 43 Color.GREEN, Color.BLUE, Shader.TileMode.CLAMP);
45 Color.GREEN, Color.RED, Shader.TileMode.CLAMP);
58 int green = (int)((greenX + greenY - greenX * greenY) * 255); local
63 assertEquals(green, Color.green(pixel), TOLERANCE);
75 greenBitmap.eraseColor(Color.GREEN);
92 // white ^ green ^ cyan = yellow
LightingColorFilterTest.java 50 paint.setColorFilter(new LightingColorFilter(Color.BLUE, Color.GREEN));
59 assertColor(Color.GREEN, bitmap.getPixel(0, 0));
61 // channels get clipped (no overflow into green or alpha)
86 assertEquals(Color.green(expected), Color.green(actual), TOLERANCE);
PictureTest.java 78 // GREEN rectangle covering the entire canvas
79 paint.setColor(Color.GREEN);
96 // remaining lines are all green
99 assertEquals(Color.GREEN, bitmap.getPixel(x, y));
SweepGradientTest.java 53 final int[] colors = new int[] { Color.GREEN, Color.RED };
62 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE };
72 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE, Color.GREEN };
114 int green = (int) ((1d - delta) * Color.green(colors[i1]) + local
115 delta * Color.green(colors[i2]));
118 color = Color.argb(alpha, red, green, blue);
126 assertEquals(Color.green(color), Color.green(pixel), tolerance)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Sweep.java 47 mShader = new SweepGradient(x, y, new int[] { Color.GREEN,
50 Color.GREEN }, null);
Pictures.java 46 p.setColor(Color.GREEN);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
GpsTestActivity.java 120 log("All GPS tests complete", Color.GREEN);
157 log("OK!\n", Color.GREEN);
160 log("(Sleep 2 second) \n", Color.GREEN);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterCurves.java 70 if (!mParameters.getSpline(Spline.GREEN).isOriginal()) {
72 populateArray(greenGradient, Spline.GREEN);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
TextureTestRenderer.java 74 Color.GREEN, Color.GREEN, Color.CYAN, Color.CYAN,
75 Color.GREEN, Color.GREEN, Color.CYAN, Color.CYAN
  /cts/tests/tests/text/src/android/text/cts/
TextPaintTest.java 45 textPaintSrc.bgColor = Color.GREEN;
  /development/samples/devbytes/animation/CrossFading/src/com/example/android/crossfading/
CrossFading.java 47 // Create red and green bitmaps to cross-fade between
53 canvas.drawColor(Color.GREEN);
58 // Add the red/green bitmap drawables to a TransitionDrawable. They are layered

Completed in 493 milliseconds

1 2 3 4 5 6