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

1 2

  /frameworks/native/services/surfaceflinger/
Colorizer.h 31 BLUE = 34,
  /packages/apps/Gallery2/jni/filters/
filters.h 42 #define BLUE i+2
  /cts/tests/tests/animation/src/android/animation/cts/
ArgbEvaluatorTest.java 26 final int BLUE = 0xff8080FF;
30 int bRED = Color.blue(RED);
31 int aBLUE = Color.alpha(BLUE);
32 int rBLUE = Color.red(BLUE);
33 int gBLUE = Color.green(BLUE);
34 int bBLUE = Color.blue(BLUE);
40 result = (Integer) evaluator.evaluate(0.5f, RED, BLUE);
51 int bResult = Color.blue(result);
AnimationActivity.java 188 public static final int BLUE = 0xff8080FF;
202 colorAnimator = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
254 int blue = (int)(Math.random() * 255); local
255 int color = 0xff000000 | red << 16 | green << 8 | blue;
256 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
MockEnum.java 29 RED, BLUE, YELLO
43 samEnum = Sample2.BLUE;
MockEnum2.java 30 RED, BLUE, YELLO
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
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;
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;
  /external/llvm/include/llvm/Support/
raw_ostream.h 76 BLUE,
  /external/ltrace/testsuite/ltrace.main/
parameters.c 32 BLUE,
82 func_enum(BLUE);
89 func_typedef(BLUE);
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
FileRotatorTest.java 232 private static final String BLUE = "blue";
252 rotate.combineActive(reader, writer(BLUE), currentTime);
258 final String[] FULL_SET = { RED, GREEN, BLUE, YELLOW };
267 RED, GREEN, BLUE);
272 GREEN, BLUE, YELLOW);
277 assertReadMatching(rotate, blueStart + SECOND_IN_MILLIS, blueEnd - SECOND_IN_MILLIS, 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;
81 * Return the blue component of a color int. This is the same as saying
85 public static int blue(int color) { method in class:Color
90 * Return a color-int from red, green, blue components.
97 * @param blue Blue component [0..255] of the color
100 public static int rgb(int red, int green, int blue) {
275 float blue = 0.0f; local
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Material.java 41 public static final int BLUE = 2;
92 mColor[p + BLUE] = v;
104 int[] blue = new int[means.length - 1]; local
114 blue[i] = (rgb >> 0) & 0xff;
131 mMaterialProp[i].mBlue = blue[i];
245 int blue = m[0].mBlue; local
251 mColor[p + BLUE] = (byte) blue;
268 int blue = (int) (m[k].mBlue * t1 + m[k + 1].mBlue * t2); local
277 mColor[p + BLUE] = (byte) blue;
289 int blue = mp.mBlue; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
LayoutManager.java 57 paddingPaint.setColor(Color.BLUE);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 64 static final Color BLUE= DEFAULT_DISPLAY.getSystemColor(SWT.COLOR_BLUE);
382 this.gc.setForeground(BLUE);
  /system/core/libpixelflinger/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/libdrm/tests/modetest/
buffers.c 76 struct color_component blue; member in struct:rgb_info
201 (((b) >> (8 - (rgb)->blue.length)) << (rgb)->blue.offset) | \
220 MAKE_YUV_601(0, 0, 192), /* blue */
223 MAKE_YUV_601(0, 0, 192), /* blue */
324 MAKE_YUV_601(0, 0, 192), /* blue */
327 MAKE_YUV_601(0, 0, 192), /* blue */
423 MAKE_RGBA(rgb, 0, 0, 192, 255), /* blue */
426 MAKE_RGBA(rgb, 0, 0, 192, 255), /* blue */
484 MAKE_RGB24(rgb, 0, 0, 192), /* blue */
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 38 public static final int BLUE = 3;
80 case BLUE:
81 return Color.BLUE;
  /packages/apps/Messaging/jni/
GifTranscoder.cpp 35 #define BLUE(color) (((color) >> 0) & 0xff)
444 char avgBlue = (char)(((int) BLUE(c1) + (int) BLUE(c2) +
445 (int) BLUE(c3) + (int) BLUE(c4)) / 4);
477 SQUARE(BLUE(c1) - BLUE(c2));
496 return MAKE_COLOR_ARGB(0xff, color.Red, color.Green, color.Blue);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 56 static final Color BLUE= DEFAULT_DISPLAY.getSystemColor(SWT.COLOR_BLUE);
417 // positive delta between 10% and 20% shown in blue
418 item.setForeground(col, BLUE);
PerformancesView.java 81 static final Color BLUE= DEFAULT_DISPLAY.getSystemColor(SWT.COLOR_BLUE);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MultimapsTest.java 454 private enum Color {BLUE, RED, YELLOW, GREEN}
504 multimap.put(Color.BLUE, -1);
510 multimap.put(Color.BLUE, 2);
519 Maps.immutableEntry(Color.BLUE, 2));
529 multimap.putAll(Color.BLUE, asList(3, 1, 4));
533 assertEquals("[3, 1, 4]", multimap.get(Color.BLUE).toString());
537 assertEquals("[3, 1, 4]", ummodifiable.get(Color.BLUE).toString());
539 Collection<Integer> collection = multimap.get(Color.BLUE);
560 multimap.putAll(Color.BLUE, asList(3, 1, 4, 1));
564 assertEquals("{BLUE=[3, 1, 4, 1], RED=[2, 7, 1, 8]}", multimap.toString())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsTest.java 555 private enum Color {BLUE, RED, YELLOW, GREEN}
605 multimap.put(Color.BLUE, -1);
611 multimap.put(Color.BLUE, 2);
620 Maps.immutableEntry(Color.BLUE, 2));
630 multimap.putAll(Color.BLUE, asList(3, 1, 4));
634 assertEquals("[3, 1, 4]", multimap.get(Color.BLUE).toString());
638 assertEquals("[3, 1, 4]", ummodifiable.get(Color.BLUE).toString());
640 Collection<Integer> collection = multimap.get(Color.BLUE);
652 multimap.putAll(Color.BLUE, asList(3, 1, 4));
671 multimap.putAll(Color.BLUE, asList(3, 1, 4, 1))
    [all...]
  /external/webp/src/dec/
vp8l.c 37 // 4. blue, and,
42 BLUE = 2,
717 // call to ReadSymbol() for red/blue/alpha channels.
721 if (htrees[BLUE].num_nodes_ > 1) return 0;
857 int red, green, blue, alpha; local
861 blue = ReadSymbol(&htree_group->htrees_[BLUE], br);
863 *src = ((uint32_t)alpha << 24) | (red << 16) | (green << 8) | blue;
    [all...]

Completed in 1636 milliseconds

1 2