HomeSort by relevance Sort by last modified time
    Searched refs:BLUE (Results 26 - 50 of 86) sorted by null

12 3 4

  /cts/tests/tests/graphics/src/android/graphics/cts/
PixelXorXfermodeTest.java 47 // black ^ green ^ cyan = blue
48 assertEquals(Color.BLUE, target.getPixel(width * 3 / 4, height * 3 / 4));
62 int blue = Color.blue(color); local
63 return Color.argb(alpha, red, green, blue);
BitmapShaderTest.java 34 private static final int BORDER_COLOR = Color.BLUE;
DiscretePathEffectTest.java 69 // draw guide rectangle into blue channel (each segment must be completely inside this)
70 paint.setColor(Color.BLUE);
85 assertEquals(0xFF, Color.blue(pixel));
SweepGradientTest.java 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 };
116 int blue = (int) ((1d - delta) * Color.blue(colors[i1]) + local
117 delta * Color.blue(colors[i2]));
118 color = Color.argb(alpha, red, green, blue);
127 assertEquals(Color.blue(color), Color.blue(pixel), tolerance);
ColorTest.java 35 assertEquals(0x00, Color.blue(Color.RED));
36 assertEquals(0x00, Color.blue(Color.YELLOW));
101 assertEquals(Color.BLUE, Color.parseColor("blue"));
ComposeShaderTest.java 43 Color.GREEN, Color.BLUE, Shader.TileMode.CLAMP);
64 assertEquals(x, Color.blue(pixel), TOLERANCE);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SetWallpaperActivity.java 44 {Color.BLUE, Color.GREEN, Color.RED, Color.LTGRAY, Color.MAGENTA, Color.CYAN,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Sweep.java 49 Color.BLUE,
AlphaBitmap.java 71 Color.RED, Color.GREEN, Color.BLUE },
Clipping.java 60 mPaint.setColor(Color.BLUE);
PathEffects.java 67 mColors = new int[] { Color.BLACK, Color.RED, Color.BLUE,
Patterns.java 38 p.setColor(Color.BLUE);
ScaleToFit.java 54 30, 30, Color.BLUE,
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_format.h 97 BLUE = GGL_INDEX_BLUE,
121 uint8_t bh; // blue high bit position + 1
122 uint8_t bl; // blue low bit position
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 73 g.setColor(Color.BLUE);
  /system/core/include/pixelflinger/
format.h 91 BLUE = GGL_INDEX_BLUE,
115 uint8_t bh; // blue high bit position + 1
116 uint8_t bl; // blue low bit position
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsTest.java 530 private enum Color {BLUE, RED, YELLOW, GREEN}
559 multimap.putAll(Color.BLUE, asList(3, 1, 4));
563 assertEquals("[3, 1, 4]", multimap.get(Color.BLUE).toString());
567 assertEquals("[3, 1, 4]", ummodifiable.get(Color.BLUE).toString());
569 Collection<Integer> collection = multimap.get(Color.BLUE);
581 multimap.putAll(Color.BLUE, asList(3, 1, 4));
600 multimap.putAll(Color.BLUE, asList(3, 1, 4, 1));
604 assertEquals("{BLUE=[3, 1, 4, 1], RED=[2, 7, 1, 8]}", multimap.toString());
605 assertFalse(multimap.get(Color.BLUE) instanceof RandomAccess);
616 multimap.putAll(Color.BLUE, asList(3, 1, 4, 1))
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
SyncCommon.java 44 protected static final Color AUTH_COLORS[] = {Color.MAGENTA, Color.GREEN, Color.BLUE,
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 56 private static final int BLUE = 0xff8080FF;
70 ValueAnimator colorAnim = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
161 int blue = (int)(Math.random() * 255); local
162 int color = 0xff000000 | red << 16 | green << 8 | blue;
164 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
AnimationSeeking.java 92 private static final int BLUE = 0xff8080FF;
135 int blue = (int)(100 + Math.random() * 155); local
136 int color = 0xff000000 | red << 16 | green << 8 | blue;
138 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
  /frameworks/base/graphics/java/android/graphics/
Color.java 27 * green, blue. The values are unpremultiplied, meaning any transparency is
30 * (green << 8) | blue. Each component ranges between 0..255 with 0
33 * no contributions from red, green, or blue), and opaque-white would be
44 public static final int BLUE = 0xFF0000FF;
75 * Return the blue component of a color int. This is the same as saying
78 public static int blue(int color) { method in class:Color
83 * Return a color-int from red, green, blue components.
90 * @param blue Blue component [0..255] of the color
92 public static int rgb(int red, int green, int blue) {
260 float blue = 0.0f; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
LayerDrawableTest.java 51 Drawable colorDrawable = new ColorDrawable(Color.BLUE);
126 Drawable colorDrawable = new ColorDrawable(Color.BLUE);
149 Drawable[] array = new Drawable[] { new BitmapDrawable(), new ColorDrawable(Color.BLUE) };
189 Drawable[] array = new Drawable[] { new BitmapDrawable(), new ColorDrawable(Color.BLUE) };
208 Drawable colorDrawable = new ColorDrawable(Color.BLUE);
240 Drawable[] array = new Drawable[] { new BitmapDrawable(), new ColorDrawable(Color.BLUE) };
405 ColorDrawable colorDrawable = new ColorDrawable(Color.BLUE);
446 Drawable[] array = new Drawable[] { new BitmapDrawable(), new ColorDrawable(Color.BLUE) };
711 Drawable[] array = new Drawable[] { new BitmapDrawable(), new ColorDrawable(Color.BLUE) };
    [all...]
  /cts/tests/src/android/view/cts/
SurfaceViewStubActivity.java 182 paint.setColor(Color.BLUE);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ShadersActivity.java 93 Color.BLUE, Color.MAGENTA, Shader.TileMode.CLAMP);
ViewPropertyAlphaActivity.java 84 text.setSpan(new ForegroundColorSpan(Color.BLUE), 4, 9,

Completed in 447 milliseconds

12 3 4