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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/scripts/
_mk_icons.sh 9 icon S blue sharedUserId
19 icon U blue uses-permission
22 icon L blue label
24 icon A blue application
26 icon P blue persistent
29 icon T blue theme
38 icon S blue service
40 icon C blue clearOnBackground
45 icon F blue intent-filter
54 icon P blue pat
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 23 public final int blue; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
29 this.blue = blue;
33 public GLColor(int red, int green, int blue) {
36 this.blue = blue;
46 blue == color.blue &&
  /external/webkit/WebCore/manual-tests/animation/
animateColor-repeat-indefinite.svg 3 <animateColor attributeName="fill" values='blue; green' dur='2s' repeatCount='indefinite' />
5 <text x='10' y='120'>The rect should animate from blue to green over 2 seconds, repeatedly.</text>
animateColor-to-from.svg 3 <animateColor attributeName="fill" from='blue' to='green' dur='3s' fill='freeze' />
5 <text x='10' y='120'>The rect should animate from blue to green over 3 seconds</text>
animateColor-to.svg 2 <rect width='100' height='100' fill='blue'>
5 <text x='10' y='120'>The rect should animate from blue to green over 3 seconds</text>
animateColor-values-simple.svg 3 <animateColor attributeName="fill" values='blue; green' dur='3s' fill='freeze' />
5 <text x='10' y='120'>The rect should animate from blue to green over 3 seconds</text>
animateTransform-repeat-once.svg 2 <rect fill='blue' width='100' height='100'>
  /external/webkit/WebCore/manual-tests/resources/
big-page.html 2 <div style="width: 400px; height: 400px; background-color: blue"></div>
  /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;
79 blue = b;
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/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gamma.c 33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue)
57 if ( blue < MIN_GAMMA ) {
58 gamma.blue = MIN_GAMMA;
60 if ( blue > MAX_GAMMA ) {
61 gamma.blue = MAX_GAMMA;
63 gamma.blue = blue;
71 gamma_saved[2] = gamma.blue;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue)
88 result = X11_SetGammaNoLock(this, red, green, blue);
    [all...]
  /cts/tools/signature-tools/templates/
Styles.st 6 a.default:link {color: blue; text-decoration: none}
7 a.default:hover {color: blue; text-decoration: underline;}
8 a.default:visited {color: blue; text-decoration: none}
  /sdk/traceview/src/com/android/traceview/
ColorController.java 34 private static RGB[] rgbColors = { new RGB(90, 90, 255), // blue
40 new RGB(40, 0, 200), // dark blue
44 new RGB(200, 200, 255), // light blue
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...]
  /external/webkit/WebCore/manual-tests/
drag-image-table-part-decorations.html 4 only the hollow black square, and no blue background.
6 <div style="background-color: blue; display: table; height: 100px; width: 100px;"></div>
9 <div style="background-color: blue; display: table-row; height: 100px;"><div style="width: 100px"></div></div>
12 <div style="background-color: blue; display: table-cell; height: 100px; width: 100px;"></div>
15 <fieldset style="background-color: blue; border: none; height: 100px; width: 100px;"><legend></legend></fieldset>
18 <table style="border-collapse: collapse;"><tr><td style="border-bottom: 100px solid blue; width: 100px;"></td></tr></table>
svg-link-hover-use.svg 3 <rect id='rect' width='100' height="100" fill='blue' />
8 <text y='120' x='10'>The above blue square is a link, the cursor should be a hand above it.</text>
  /external/skia/src/animator/
SkDrawColor.cpp 35 SkScalar blue = SkIntToScalar(SkColorGetB(color)); local
36 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
37 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
50 hue = SkScalarMul(green - blue, part60);
55 hue = 120 * SK_Scalar1 + SkScalarMul(blue - red, part60);
56 else // blue == value
75 SkScalar blue SK_INIT_TO_AVOID_WARNING;
77 red = green = blue = value;
87 case 0: red = value; green = t; blue = p; break;
88 case 1: red = q; green = value; blue = p; break
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List1.java 50 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
53 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
54 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
63 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
66 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
78 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
80 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
List9.java 157 "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
161 "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
162 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini",
174 "Button (Innes)", "Buxton Blue", "Cabecou", "Caboc", "Cabrales",
179 "Casciotta di Urbino", "Cashel Blue", "Castellano", "Castelleno",
194 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo",
196 "Denhany Dorset Drum", "Derby", "Dessertnyj Belyj", "Devon Blue",
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListFilter.java 70 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
73 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
74 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
83 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
86 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
98 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
100 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_gamma.c 93 int SDL_SetGamma(float red, float green, float blue)
106 CalculateGammaRamp(blue, ramp[2]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue)
134 CalculateGammaFromRamp(blue, ramp[2]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue)
169 if ( blue ) {
170 SDL_memcpy(&video->gamma[2*256], blue, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Color.java 27 * green, blue. The values are unpremultiplied, meaning any transparency is
30 * (green << 8) | blue. Each component ranges between 0..255 with 0
33 * no contributes from red, gree, blue, and opaque-white would be 0xFFFFFFFF
43 public static final int BLUE = 0xFF0000FF;
74 * Return the blue component of a color int. This is the same as saying
77 public static int blue(int color) { method in class:Color
82 * Return a color-int from red, green, blue components.
89 * @param blue Blue component [0..255] of the color
91 public static int rgb(int red, int green, int blue) {
259 float blue = 0.0f; local
    [all...]
  /external/webkit/WebCore/manual-tests/inspector/
webinspector-log.html 17 in the console with the text "hello, world". There will be a blue
20 The message and repeat count are blue.
  /cts/tests/tests/graphics/src/android/graphics/cts/
LinearGradientTest.java 53 int[] color = { Color.BLUE, Color.GREEN, Color.RED };
61 // BLUE -> GREEN, B sub-value decreasing while G sub-value increasing
62 assertTrue(Color.blue(b.getPixel(10, 0)) > Color.blue(b.getPixel(10, 5)));
63 assertTrue(Color.blue(b.getPixel(10, 5)) > Color.blue(b.getPixel(10, 10)));
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
80 assertTrue(Color.blue(b.getPixel(10, 0)) < Color.blue(b.getPixel(10, 15)))
    [all...]
PixelXorXfermodeTest.java 56 // black ^ green ^ cyan = blue
57 assertEquals(Color.BLUE, target.getPixel(width * 3 / 4, height * 3 / 4));
71 int blue = Color.blue(color); local
72 return Color.argb(alpha, red, green, blue);
  /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/webkit/WebCore/svg/
ColorDistance.cpp 40 , m_blueDiff(toColor.blue() - fromColor.blue())
71 clampColorValue(first.blue() + second.blue()));
78 clampColorValue(color.blue() + m_blueDiff));

Completed in 68 milliseconds

1 2 3 4 5 6 7 8 91011>>