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

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
UIImage+ARDUtilities.h 15 // Returns an color tinted version for the given image resource.
16 + (UIImage *)imageForName:(NSString *)name color:(UIColor *)color;
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
Converters.java 24 public static ColorDrawable convertColorToDrawable(int color) {
25 return new ColorDrawable(color);
29 public static ColorStateList convertColorToColorStateList(int color) {
30 return ColorStateList.valueOf(color);
  /external/ImageMagick/MagickCore/
image-private.h 66 static inline unsigned char ScaleColor5to8(const unsigned int color)
68 return((unsigned char) (((color) << 3) | ((color) >> 2)));
71 static inline unsigned char ScaleColor6to8(const unsigned int color)
73 return((unsigned char) (((color) << 2) | ((color) >> 4)));
76 static inline unsigned int ScaleColor8to5(const unsigned char color)
78 return((unsigned int) (((color) & ~0x07) >> 3));
81 static inline unsigned int ScaleColor8to6(const unsigned char color)
83 return((unsigned int) (((color) & ~0x03) >> 2))
    [all...]
  /external/libdaemon/doc/
style.css 26 body { color: black; background-color: white; }
27 a:link, a:visited { color: #900000; }
29 pre { background-color: #f0f0f0; padding: 0.4cm; }
30 .grey { color: #8f8f8f; font-size: 80%; }
  /external/proguard/src/proguard/gui/splash/
ColorSprite.java 32 private final VariableColor color; field in class:ColorSprite
38 * @param color the variable color of the given sprite.
41 public ColorSprite(VariableColor color,
44 this.color = color;
53 // Save the old color.
54 Color oldColor = graphics.getColor();
56 // Set the new color.
57 graphics.setColor(color.getColor(time))
    [all...]
  /prebuilts/go/darwin-x86/src/image/color/palette/
palette.go 9 import "image/color"
11 // Plan9 is a 256-color palette that partitions the 24-bit RGB space
13 // WebSafe, the idea is to reduce the color resolution by dicing the
14 // color cube into fewer cells, and to use the extra space to increase the
16 // 4 samples in each), 13 shades of each primary and secondary color (3
18 // covering the rest of the color cube. The advantage is better representation
22 // https://9p.io/magic/man2html/6/color
23 var Plan9 = []color.Color{
24 color.RGBA{0x00, 0x00, 0x00, 0xff}
    [all...]
  /prebuilts/go/linux-x86/src/image/color/palette/
palette.go 9 import "image/color"
11 // Plan9 is a 256-color palette that partitions the 24-bit RGB space
13 // WebSafe, the idea is to reduce the color resolution by dicing the
14 // color cube into fewer cells, and to use the extra space to increase the
16 // 4 samples in each), 13 shades of each primary and secondary color (3
18 // covering the rest of the color cube. The advantage is better representation
22 // https://9p.io/magic/man2html/6/color
23 var Plan9 = []color.Color{
24 color.RGBA{0x00, 0x00, 0x00, 0xff}
    [all...]
  /external/libvpx/libvpx/
y4menc.c 17 const char *color; local
20 color = fmt == VPX_IMG_FMT_444A
27 color = fmt == VPX_IMG_FMT_I44416
33 color = fmt == VPX_IMG_FMT_I44416
39 color = fmt == VPX_IMG_FMT_I44416
45 color = fmt == VPX_IMG_FMT_I44416
51 color = fmt == VPX_IMG_FMT_I44416
56 default: color = NULL; assert(0);
59 framerate->numerator, framerate->denominator, 'p', color);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPorterDuffColorFilter.java 10 private int color; field in class:ShadowPorterDuffColorFilter
14 public void __constructor__(int color, PorterDuff.Mode mode) {
15 this.color = color;
20 public void setColor(int color) {
21 this.color = color;
31 return 31 * mode.hashCode() + color;
35 * @return Returns the ARGB color used to tint the source pixels when this filter
39 return color;
    [all...]
ShadowGradientDrawable.java 16 private int color; field in class:ShadowGradientDrawable
19 public void setColor(int color) {
20 this.color = color;
21 directlyOn(realGradientDrawable, GradientDrawable.class).setColor(color);
25 return color;
  /external/snakeyaml/src/test/java/examples/staticstate/
Wrapper.java 21 private String color; field in class:Wrapper
28 JavaBeanWithStaticState.color = color;
34 color = JavaBeanWithStaticState.color;
61 return color;
64 public void setColor(String color) {
65 this.color = color;
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.hpp 37 v.color.float32[0] = r;
38 v.color.float32[1] = g;
39 v.color.float32[2] = b;
40 v.color.float32[3] = a;
47 v.color.uint32[0] = r;
48 v.color.uint32[1] = g;
49 v.color.uint32[2] = b;
50 v.color.uint32[3] = a;
57 v.color.int32[0] = r;
58 v.color.int32[1] = g
    [all...]
  /art/tools/ahat/etc/
style.css 18 background-color: #eeffff;
22 color: #770000;
26 color: #007700;
33 background-color: #eeeeee;
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/
charset-media.css 7 background-color: gold;
  /external/clang/test/CodeCompletion/
enum-switch-case-qualified.cpp 5 enum Color {
21 void test(enum N::C::Color color) {
22 switch (color) {
25 // CHECK-CC1: Blue : [#M::N::C::Color#]N::C::Blue
26 // CHECK-CC1-NEXT: Green : [#M::N::C::Color#]N::C::Green
27 // CHECK-CC1-NEXT: Indigo : [#M::N::C::Color#]N::C::Indigo
28 // CHECK-CC1-NEXT: Orange : [#M::N::C::Color#]N::C::Orange
29 // CHECK-CC1-NEXT: Red : [#M::N::C::Color#]N::C::Red
30 // CHECK-CC1-NEXT: Violet : [#M::N::C::Color#]N::C::Viole
    [all...]
enum-switch-case.c 1 enum Color {
11 void test(enum Color color) {
12 switch (color) {
36 // CHECK-CC2: COMPLETION: Blue : [#enum Color#]Blue
38 // CHECK-CC2-NEXT: COMPLETION: color : [#enum Color#]color
39 // CHECK-CC2-NEXT: COMPLETION: Green : [#enum Color#]Green
40 // CHECK-CC2-NEXT: COMPLETION: Indigo : [#enum Color#]Indig
    [all...]
enum-switch-case.cpp 2 enum Color {
13 void test(enum N::Color color) {
14 switch (color) {
23 // CHECK-CC1: Blue : [#N::Color#]N::Blue
24 // CHECK-CC1-NEXT: Green : [#N::Color#]N::Green
25 // CHECK-CC1-NEXT: Indigo : [#N::Color#]N::Indigo
26 // CHECK-CC1-NEXT: Orange : [#N::Color#]N::Orange
27 // CHECK-CC1-NEXT: Violet : [#N::Color#]N::Violet
macros.c 1 enum Color {
7 enum Color color; member in struct:Point
12 switch (p->IDENTITY(color)) {
26 // CC1: color
  /external/clang/test/Index/
complete-enums.cpp 4 enum class Color {
10 void f(Color color) {
11 switch (color) {
12 case Color::Green: { X x; }
13 case Color::Red;
18 // CHECK-CC1: EnumConstantDecl:{ResultType Color}{Text Color::}{TypedText Blue} (7)
19 // CHECK-CC1: EnumConstantDecl:{ResultType Color}{Text Color::}{TypedText Green} (7
    [all...]
  /external/libvncserver/webclients/novnc/include/
blue.css 10 background-color:#04073d;
15 color-stop(0.54, rgb(10,15,79)),
16 color-stop(0.5, rgb(4,7,61))
25 background-color:#f04040;
30 color-stop(0.54, rgb(240,64,64)),
31 color-stop(0.5, rgb(4,7,61))
40 background-color:#f0f040;
45 color-stop(0.54, rgb(240,240,64)),
46 color-stop(0.5, rgb(4,7,61))
58 color:#fff
    [all...]
  /external/selinux/mcstrans/share/examples/urcsts/
secolor.conf 2 color black = #000000
3 color green = #008000
4 color yellow = #ffff00
5 color blue = #0000ff
6 color white = #ffffff
7 color red = #ff0000
8 color orange = #ffa500
9 color tan = #D2B48C
  /external/selinux/mcstrans/share/examples/urcsts-via-include/
secolor.conf 2 color black = #000000
3 color green = #008000
4 color yellow = #ffff00
5 color blue = #0000ff
6 color white = #ffffff
7 color red = #ff0000
8 color orange = #ffa500
9 color tan = #D2B48C
  /external/skia/tests/
HSVRoundTripTest.cpp 17 SkColor color = SkColorSetARGBInline(0xFF, r, g, b); local
18 SkColorToHSV(color, hsv);
20 if (result != color) {
25 color, hsv[0], hsv[1], hsv[2], result);
  /external/skqp/tests/
HSVRoundTripTest.cpp 17 SkColor color = SkColorSetARGBInline(0xFF, r, g, b); local
18 SkColorToHSV(color, hsv);
20 if (result != color) {
25 color, hsv[0], hsv[1], hsv[2], result);
  /test/vti/dashboard/src/main/webapp/css/
common.css 26 background-color: #7FFF00;
29 background-color: #ff4d4d;
32 background-color: #A8A8A8;
35 background-color: black;
38 background-color: #9900CC;
41 background-color: white;

Completed in 1202 milliseconds

12 3 4 5 6 7 8 91011>>