/frameworks/native/services/surfaceflinger/ |
Colorizer.h | 28 RED = 31,
|
/packages/apps/Gallery2/jni/filters/ |
filters.h | 40 #define RED i
|
/cts/tests/tests/animation/src/android/animation/cts/ |
ArgbEvaluatorTest.java | 25 final int RED = 0xffFF8080; 27 int aRED = Color.alpha(RED); 28 int rRED = Color.red(RED); 29 int gRED = Color.green(RED); 30 int bRED = Color.blue(RED); 32 int rBLUE = Color.red(BLUE); 40 result = (Integer) evaluator.evaluate(0.5f, RED, BLUE); 49 int rResult = Color.red(result);
|
AnimationActivity.java | 182 public static final int RED = 0xffFF8080; 197 colorAnimator = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE); 247 int red = (int)(Math.random() * 255); local 250 int color = 0xff000000 | red << 16 | green << 8 | blue; 251 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
MockEnum.java | 29 RED, BLUE, YELLO
|
MockEnum2.java | 30 RED, BLUE, YELLO
|
/external/guava/guava-tests/test/com/google/common/collect/ |
EnumMultisetTest.java | 39 BLUE, RED, YELLOW, GREEN, WHITE 44 ms.add(Color.RED); 46 ms.add(Color.RED); 49 assertEquals(2, ms.count(Color.RED)); 54 asList(Color.RED, Color.YELLOW, Color.RED)); 57 assertEquals(2, ms.count(Color.RED)); 72 ms.add(Color.RED, 2); 73 assertEquals("[BLUE x 3, RED x 2, YELLOW]", ms.toString()); 79 asList(Color.RED, Color.YELLOW, Color.RED)) [all...] |
MultimapsTest.java | 530 private enum Color {BLUE, RED, YELLOW, GREEN} 561 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 582 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 602 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 604 assertEquals("{BLUE=[3, 1, 4, 1], RED=[2, 7, 1, 8]}", multimap.toString()); 617 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 636 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 647 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 668 multimap.putAll(Color.RED, asList(2, 7, 1, 8)); 680 multimap.putAll(Color.RED, asList(2, 7, 1, 8)) [all...] |
/external/chromium_org/chrome/browser/diagnostics/ |
diagnostics_writer.cc | 34 RED, 101 case RED: 166 case RED: 261 color = SimpleConsole::RED;
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
AnimationSeeking.java | 91 private static final int RED = 0xffFF8080; 133 int red = (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 | 55 private static final int RED = 0xffFF8080; 70 ValueAnimator colorAnim = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE); 159 int red = (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/chromium/chrome/browser/diagnostics/ |
diagnostics_main.cc | 34 RED, 101 case RED: 169 case RED: 231 console_->SetColor(SimpleConsole::RED);
|
/external/llvm/include/llvm/Support/ |
raw_ostream.h | 66 RED,
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
FileRotatorTest.java | 228 private static final String RED = "red"; 242 rotate.combineActive(reader, writer(RED), currentTime); 256 final String[] FULL_SET = { RED, GREEN, BLUE, YELLOW }; 265 RED, GREEN, BLUE);
|
/frameworks/base/graphics/java/android/graphics/ |
Color.java | 27 * Colors are represented as packed ints, made up of 4 bytes: alpha, red, 30 * components are stored as follows (alpha << 24) | (red << 16) | 34 * no contributions from red, green, or blue), and opaque-white would be 43 public static final int RED = 0xFFFF0000; 60 * Return the red component of a color int. This is the same as saying 63 public static int red(int color) { method in class:Color 84 * Return a color-int from red, green, blue components. 89 * @param red Red component [0..255] of the color 93 public static int rgb(int red, int green, int blue) 261 float red = 0.0f; local [all...] |
/external/chromium_org/third_party/bintrees/bintrees/ |
ctrees.c | 21 #define RED(node) (node->xdata) 252 return (node != NULL) && (RED(node) == 1); 265 RED(root) = 1; 266 RED(save) = 0; 321 /* Simple red violation: color flip */ 322 RED(q) = 1; 323 RED(q->link[0]) = 0; 324 RED(q->link[1]) = 0; 328 /* Hard red violation: rotations necessary */ 364 RED(root) = 0 [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 | 66 static final Color RED = DEFAULT_DISPLAY.getSystemColor(SWT.COLOR_RED); 336 this.gc.setForeground(RED);
|
/system/core/include/pixelflinger/ |
format.h | 89 RED = GGL_INDEX_RED, 111 uint8_t rh; // red high bit position + 1 112 uint8_t rl; // red low bit position
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
Spline.java | 36 public static final int RED = 1; 76 case Spline.RED: 77 return Color.RED;
|
/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 | 60 static final Color RED = DEFAULT_DISPLAY.getSystemColor(SWT.COLOR_RED); 382 item.setForeground(col, RED); 404 // delta < -10%: failure shown by an red-cross icon + text in red 406 item.setForeground(col, RED); 408 // negative delta over 5% shown in red 409 item.setForeground(col, RED);
|
PerformancesView.java | 83 static final Color RED = DEFAULT_DISPLAY.getSystemColor(SWT.COLOR_RED);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ReflectionTest.java | 286 Class<?> redClass = TrafficLights.RED.getClass(); 369 RED,
|
/external/chromium_org/third_party/libwebp/dec/ |
vp8l.c | 38 // 3. red, 43 RED = 1, 323 // The huffman data is stored in red and green bytes. 715 int red, green, blue, alpha; \ 716 red = ReadSymbol(&htree_group->htrees_[RED], br); \ 721 *src = STORE_PIXEL(alpha, red, green, blue); \ [all...] |
/external/webp/src/dec/ |
vp8l.c | 38 // 3. red, 43 RED = 1, 322 // The huffman data is stored in red and green bytes. 714 int red, green, blue, alpha; \ 715 red = ReadSymbol(&htree_group->htrees_[RED], br); \ 720 *src = STORE_PIXEL(alpha, red, green, blue); \ [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/ |
performanceui.jar | |