/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;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
EnumMultisetTest.java | 39 BLUE, RED, YELLOW, GREEN, WHITE 47 assertEquals(0, ms.count(Color.BLUE)); 55 assertEquals(0, ms.count(Color.BLUE)); 70 ms.add(Color.BLUE, 3); 73 assertEquals("[BLUE x 3, RED x 2, YELLOW]", ms.toString()); 85 ms.add(Color.BLUE, 3);
|
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...] |
/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
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentViewReadbackTest.java | 48 int deltaB = Math.abs(Color.blue(actual) - Color.blue(expected)); 123 assertEqualColor(color.get(), Color.BLUE, COLOR_THRESHOLD);
|
/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 | 74 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 | 28 * green, blue. The values are unpremultiplied, meaning any transparency is 31 * (green << 8) | blue. Each component ranges between 0..255 with 0 34 * no contributions from red, green, or blue), and opaque-white would be 45 public static final int BLUE = 0xFF0000FF; 76 * Return the blue component of a color int. This is the same as saying 79 public static int blue(int color) { method in class:Color 84 * Return a color-int from red, green, blue components. 91 * @param blue Blue component [0..255] of the color 93 public static int rgb(int red, int green, int blue) { 263 float blue = 0.0f; local [all...] |
/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/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
|
/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;
|
/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);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
BlendComposite.java | 62 BLUE, 96 public static final BlendComposite Blue = new BlendComposite(BlendingMode.BLUE); 387 case BLUE: [all...] |
/external/chromium_org/third_party/libwebp/dec/ |
vp8l.c | 37 // 4. blue, and, 42 BLUE = 2, 716 // call to ReadSymbol() for red/blue/alpha channels. 720 if (htrees[BLUE].num_nodes_ > 1) return 0; 855 int red, green, blue, alpha; local 859 blue = ReadSymbol(&htree_group->htrees_[BLUE], br); 861 *src = ((uint32_t)alpha << 24) | (red << 16) | (green << 8) | blue; [all...] |
/external/vixl/src/a64/ |
simulator-a64.cc | 217 #define BLUE "34" 227 clr_reg_name = value ? COLOUR(BOLD(BLUE)) : ""; [all...] |
/external/webp/src/dec/ |
vp8l.c | 37 // 4. blue, and, 42 BLUE = 2, 716 // call to ReadSymbol() for red/blue/alpha channels. 720 if (htrees[BLUE].num_nodes_ > 1) return 0; 855 int red, green, blue, alpha; local 859 blue = ReadSymbol(&htree_group->htrees_[BLUE], br); 861 *src = ((uint32_t)alpha << 24) | (red << 16) | (green << 8) | blue; [all...] |