HomeSort by relevance Sort by last modified time
    Searched defs:Color (Results 101 - 125 of 149) sorted by null

1 2 3 45 6

  /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}
501 Map<Color, Collection<Integer>> map = Maps.newEnumMap(Color.class);
502 Multimap<Color, Integer> multimap = Multimaps.newMultimap(map, factory);
504 multimap.put(Color.BLUE, -1);
509 multimap.put(Color.RED, 1);
510 multimap.put(Color.BLUE, 2);
512 multimap.put(Color.GREEN, -1);
518 Maps.immutableEntry(Color.RED, 1),
519 Maps.immutableEntry(Color.BLUE, 2))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsTest.java 555 private enum Color {BLUE, RED, YELLOW, GREEN}
602 Map<Color, Collection<Integer>> map = Maps.newEnumMap(Color.class);
603 Multimap<Color, Integer> multimap = Multimaps.newMultimap(map, factory);
605 multimap.put(Color.BLUE, -1);
610 multimap.put(Color.RED, 1);
611 multimap.put(Color.BLUE, 2);
613 multimap.put(Color.GREEN, -1);
619 Maps.immutableEntry(Color.RED, 1),
620 Maps.immutableEntry(Color.BLUE, 2))
    [all...]
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryProvider2Test.java 48 private enum Color { BLUE, GREEN, RED, GRAY, BLACK, ORANGE, PINK }
61 Mustang blueMustang = (Mustang) carFactory.create(Color.BLUE);
62 assertEquals(Color.BLUE, blueMustang.color);
65 Mustang redMustang = (Mustang) carFactory.create(Color.RED);
66 assertEquals(Color.RED, redMustang.color);
83 Camaro blueCamaro = (Camaro) carFactory.create(Color.BLUE);
84 assertEquals(Color.BLUE, blueCamaro.color);
102 private final Color color; field in class:FactoryProvider2Test.Mustang
116 private final Color color; field in class:FactoryProvider2Test.Camaro
153 private Color color; field in class:FactoryProvider2Test.Corvette
184 private final Color color; field in class:FactoryProvider2Test.Beetle
212 private final Color color; field in class:FactoryProvider2Test.Porsche
246 private final Color color; field in class:FactoryProvider2Test.Firebird
309 private final Color color; field in class:FactoryProvider2Test.DeLorean
338 private final Color color; field in class:FactoryProvider2Test.Z
348 final Color color; field in class:FactoryProvider2Test.Prius
456 private final Color color; field in class:FactoryProvider2Test.Fiat
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ObjectOutputStreamTest.java 472 private static enum Color {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 38 import android.graphics.Color;
553 * This picks a dominant color, looking for high-saturation, high-value, repeated hues.
584 Color.colorToHSV(rgb, hsv);
605 // The highest-scoring RGB color wins.
609 Color.colorToHSV(rgb, hsv);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
devicetopology.h 264 COLORREF Color;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluscolor.h 4 * GDI+ color
37 typedef struct Color
203 Color(): Value(0xFF000000) {}
204 Color(ARGB argb): Value(argb) {}
205 Color(BYTE r, BYTE g, BYTE b): Value(MakeARGB(0xFF, r, g, b)) {}
206 Color(BYTE a, BYTE r, BYTE g, BYTE b): Value(MakeARGB(a, r, g, b)) {}
260 } Color;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
messages_test.py 60 # Redefine Color class in case so that changes to it (an error) in one test
62 global Color
63 class Color(messages.Enum):
76 set(Color.names()))
80 self.assertEquals(set([2, 4, 5, 20, 40, 50, 80]), set(Color.numbers()))
84 self.assertEquals(set(Color),
85 set([Color.RED,
86 Color.ORANGE,
87 Color.YELLOW,
88 Color.GREEN
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 35 import android.graphics.Color;
823 * For devices with Jellybean or later, darkens the given color to ensure that white text is
825 * sync adapter handles the color change.
827 * @param color
829 public static int getDisplayColorFromColor(int color) {
831 return color;
835 Color.colorToHSV(color, hsv);
838 return Color.HSVToColor(hsv);
841 // This takes a color and computes what it would look like blended wit
882 public int color; field in class:Utils.DNAStrand
891 int color; \/\/ Calendar color or black for conflicts field in class:Utils.DNASegment
    [all...]
EventInfoFragment.java 46 import android.graphics.Color;
294 Colors.COLOR, // 1
554 Color.colorToHSV(mColors[i], hsv);
556 Log.d("Color", "H:" + hsv[0] + ",S:" + hsv[1] + ",V:" + hsv[2]);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java 31 import android.graphics.Color;
210 /** The resource id of the color to use to override the background. */
234 sCheckBackgroundPaint.setColor(Color.GRAY);
381 mSnippetTextView.setTextColor(getResources().getColor(R.color.snippet_text_color));
439 res.getColor(R.color.senders_text_color)));
440 sSendersTextColor = res.getColor(R.color.senders_text_color);
448 res.getColor(R.color.badge_background_color));
449 sDateTextColorRead = res.getColor(R.color.date_text_color_read);
450 sDateTextColorUnread = res.getColor(R.color.date_text_color_unread);
455 // Initialize static color
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/
mootools-core-full-nocompat.js     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 424 /* If a single color should be written to all render targets, this
430 * or ARB_fragment_program fragment.color[n]) color results. If
443 /* the four standard color buffers */
489 * Mask of all the color buffer bits (but not accum).
660 GLfloat Ambient[4]; /**< ambient color */
661 GLfloat Diffuse[4]; /**< diffuse color */
662 GLfloat Specular[4]; /**< specular color */
697 GLfloat Ambient[4]; /**< ambient color */
710 GLfloat ClearColor[4]; /**< Accumulation buffer clear color */
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/
xhtmlrenderer-R8rc1.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 

Completed in 905 milliseconds

1 2 3 45 6