HomeSort by relevance Sort by last modified time
    Searched full:red (Results 1 - 25 of 1814) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKit/qt/tests/qwebframe/resources/
style.css 1 #idP {color: red !important}
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 21 public final int red; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
27 this.red = red;
33 public GLColor(int red, int green, int blue) {
34 this.red = red;
44 return (red == color.red &&
  /external/elfutils/libelf-po/
POTFILES.in 2 # Copyright (C) 2000 Red Hat, Inc.
  /external/webkit/LayoutTests/fast/js/resources/
js-test-style.css 7 color: red;
  /external/webkit/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 70 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values)
72 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha;
73 double g = values[5] * red + values[6] * green + values[7] * blue + values[8] * alpha;
74 double b = values[10] * red + values[11] * green + values[12] * blue + values[13] * alpha;
75 double a = values[15] * red + values[16] * green + values[17] * blue + values[18] * alpha;
77 red = r;
83 inline void saturate(double& red, double& green, double& blue, const float& s)
85 double r = (0.213 + 0.787 * s) * red + (0.715 - 0.715 * s) * green + (0.072 - 0.072 * s) * blue;
86 double g = (0.213 - 0.213 * s) * red + (0.715 + 0.285 * s) * green + (0.072 - 0.072 * s) * blue;
87 double b = (0.213 - 0.213 * s) * red + (0.715 - 0.715 * s) * green + (0.072 + 0.928 * s) * blue
133 double red = r, green = g, blue = b, alpha = a; local
    [all...]
  /external/srec/config/en.us/dictionary/
basic.ok 25 read rEd
26 read red
  /external/webkit/WebCore/manual-tests/animation/
set-to.svg 2 <rect width='100' height='100' fill='red' />
3 <rect x='-100' width='100' height='100' fill='red'>
animateColor-from-by.svg 5 <text x='10' y='120'>The rect should animate from red to purple over 3 seconds</text>
animateTransform-toanimation.svg 4 <rect fill="red" x="0" y="0" width="100" height="100">
  /sdk/eclipse/scripts/
_mk_icons.sh 4 # $1=letter, $2=letter's color (e.g. A red), $3=filename
10 icon S red signature
20 icon P red permission
25 icon P red permission
30 icon P red provider
47 icon A red action
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gamma.c 33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue)
41 if ( red < MIN_GAMMA ) {
42 gamma.red = MIN_GAMMA;
44 if ( red > MAX_GAMMA ) {
45 gamma.red = MAX_GAMMA;
47 gamma.red = red;
69 gamma_saved[0] = gamma.red;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue)
88 result = X11_SetGammaNoLock(this, red, green, blue)
    [all...]
  /external/ppp/pppd/plugins/
passwordfd.c 35 int readgood, red; local
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
51 if (red == 0)
53 if (red < 0) {
58 readgood += red;
  /sdk/traceview/src/com/android/traceview/
ColorController.java 36 new RGB(255, 0, 0), // red
42 new RGB(150, 0, 0), // dark red
46 new RGB(255, 150, 150), // light red
59 return requestColor(display, rgb.red, rgb.green, rgb.blue);
63 return requestColorSquare(display, rgb.red, rgb.green, rgb.blue);
66 public static Color requestColor(Display display, int red, int green, int blue) {
67 int key = (red << 16) | (green << 8) | blue;
70 color = new Color(display, red, green, blue);
76 public static Image requestColorSquare(Display display, int red, int green, int blue) {
77 int key = (red << 16) | (green << 8) | blue
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
ColorTest.java 41 assertEquals(0xff, Color.alpha(Color.RED));
52 assertEquals(Color.RED, Color.argb(0xff, 0xff, 0x00, 0x00));
62 assertEquals(0x00, Color.blue(Color.RED));
72 assertEquals(0x00, Color.green(Color.RED));
99 Color.colorToHSV(Color.RED, hsv);
100 assertEquals(Color.RED, Color.HSVToColor(hsv));
126 Color.colorToHSV(Color.RED, hsv);
127 assertEquals(Color.RED, Color.HSVToColor(0xff, hsv));
144 assertEquals(Color.RED, Color.parseColor("#ff0000"));
145 assertEquals(Color.RED, Color.parseColor("#ffff0000"))
    [all...]
LinearGradientTest.java 53 int[] color = { Color.BLUE, Color.GREEN, Color.RED };
66 // GREEN -> RED, G sub-value decreasing while R sub-value increasing
69 assertTrue(Color.red(b.getPixel(10, 15)) < Color.red(b.getPixel(10, 20)));
70 assertTrue(Color.red(b.getPixel(10, 20)) < Color.red(b.getPixel(10, 25)));
72 lg = new LinearGradient(0, 0, 0, 40, Color.RED, Color.BLUE, TileMode.CLAMP);
77 // RED -> BLUE, R sub-value decreasing while B sub-value increasing
78 assertTrue(Color.red(b.getPixel(10, 0)) > Color.red(b.getPixel(10, 15)))
    [all...]
  /external/junit/src/junit/swingui/
ProgressBar.java 8 * A progress bar showing the green/red status
20 return Color.red;
  /external/webkit/WebCore/manual-tests/inspector/
styled-error-bubbles-in-scripts.html 4 <p>To test, open the Inspector. There should be a red bubble with the number "1"
6 resource should show syntax highlighted JavaScript with a red error bubble.</p>
  /external/webkit/WebCore/manual-tests/
paste-crash.html 11 <iframe style="color: red"></iframe>
24 <iframe style="color: red"></iframe>
showModalDialog-returnValue.html 6 document.write("<span style='color:red'>Test failed due to incorrect result.<br>");
11 document.write("<span style='color:red'>Test failed due to incorrect result.<br>");
  /external/skia/src/animator/
SkDrawColor.cpp 33 SkScalar red = SkIntToScalar(SkColorGetR(color)); local
36 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
37 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
49 if (red == value) {
55 hue = 120 * SK_Scalar1 + SkScalarMul(blue - red, part60);
57 hue = 240 * SK_Scalar1 + SkScalarMul(red - green, part60);
63 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'red', etc. may be used without having been initialized
73 SkScalar red SK_INIT_TO_AVOID_WARNING;
77 red = green = blue = value;
87 case 0: red = value; green = t; blue = p; break
    [all...]
  /external/kernel-headers/original/linux/
aio_abi.h 3 * Copyright 2000,2001,2002 Red Hat.
13 * warranty, express or implied. Red Hat makes no representations about
16 * IN NO EVENT SHALL RED HAT BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
18 * THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF RED HAT HAS BEEN ADVISED
21 * RED HAT DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * RED HAT HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
  /frameworks/base/graphics/java/android/graphics/
Color.java 26 * Colors are represented as packed ints, made up of 4 bytes: alpha, red,
29 * components are stored as follows (alpha << 24) | (red << 16) |
33 * no contributes from red, gree, blue, and opaque-white would be 0xFFFFFFFF
41 public static final int RED = 0xFFFF0000;
58 * Return the red component of a color int. This is the same as saying
61 public static int red(int color) { method in class:Color
82 * Return a color-int from red, green, blue components.
87 * @param red Red component [0..255] of the color
91 public static int rgb(int red, int green, int blue)
257 float red = 0.0f; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_gamma.c 93 int SDL_SetGamma(float red, float green, float blue)
104 CalculateGammaRamp(red, ramp[0]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue)
132 CalculateGammaFromRamp(red, ramp[0]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue)
163 if ( red ) {
164 SDL_memcpy(&video->gamma[0*256], red, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue
    [all...]
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
Exhaustive.java 16 * value is neither {@literal @Foo(Color.Red)} or {@literal @Foo(Color.Blue)},
19 * {@literal @Foo(Color.Red)} or {@literal @Foo(Color.Blue)}
23 * enum Color {RED, BLUE, GREEN};
  /external/skia/include/core/
SkUnPreMultiply.h 47 red = SkUnPreMultiply::ApplyScale(scale, red);
49 // now red is unpremultiplied

Completed in 296 milliseconds

1 2 3 4 5 6 7 8 91011>>