HomeSort by relevance Sort by last modified time
    Searched full:blue (Results 76 - 100 of 3806) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_doctest.txt 7 'blue'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_doctest.txt 7 'blue'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_doctest.txt 7 'blue'
  /external/python/cpython2/Tools/pynche/
DetailsViewer.py 10 and blue are self evident. By tying together red and green, you can modify
11 the yellow level of the color. By tying together red and blue, you can modify
12 the magenta level of the color. By tying together green and blue, you can
32 preserve the distance between them. Thus if green and blue were tied,
33 and green was at 238 while blue was at 223, and an increment of 25
34 were applied, green would be at 15 and blue would be at 0.
109 self.__radio3 = Checkbutton(frame, text='Blue',
201 blue = self.__blue + delta
202 tie.append(blue)
204 blue = self.__blu
    [all...]
StripViewer.py 5 the variations in red, green, and blue respectively of the currently selected
14 Green variations show colors from (127,0,196) to (127,255,196), and the Blue
63 # red variations, green+blue = cyan constant
64 def constant_red_generator(numchips, red, green, blue):
68 # green variations, red+blue = magenta constant
69 def constant_green_generator(numchips, red, green, blue):
73 # blue variations, red+green = yellow constant
74 def constant_blue_generator(numchips, red, green, blue):
76 return map(None, seq, seq, [blue] * numchips)
78 # red variations, green+blue = cyan constan
    [all...]
  /external/python/cpython3/Tools/pynche/
DetailsViewer.py 10 and blue are self evident. By tying together red and green, you can modify
11 the yellow level of the color. By tying together red and blue, you can modify
12 the magenta level of the color. By tying together green and blue, you can
32 preserve the distance between them. Thus if green and blue were tied,
33 and green was at 238 while blue was at 223, and an increment of 25
34 were applied, green would be at 15 and blue would be at 0.
109 self.__radio3 = Checkbutton(frame, text='Blue',
201 blue = self.__blue + delta
202 tie.append(blue)
204 blue = self.__blu
    [all...]
StripViewer.py 5 the variations in red, green, and blue respectively of the currently selected
14 Green variations show colors from (127,0,196) to (127,255,196), and the Blue
63 # red variations, green+blue = cyan constant
64 def constant_red_generator(numchips, red, green, blue):
68 # green variations, red+blue = magenta constant
69 def constant_green_generator(numchips, red, green, blue):
73 # blue variations, red+green = yellow constant
74 def constant_blue_generator(numchips, red, green, blue):
76 return list(zip(seq, seq, [blue] * numchips))
78 # red variations, green+blue = cyan constan
    [all...]
  /external/ImageMagick/MagickCore/
colorspace-private.h 36 pixel->blue=((QuantumRange-(QuantumScale*pixel->blue*(QuantumRange-
44 blue, local
55 blue=QuantumScale*pixel->blue;
61 blue=QuantumScale*DecodePixelGamma(pixel->blue);
65 (fabs((double) blue) < MagickEpsilon))
72 yellow=(MagickRealType) (1.0-blue);
84 pixel->blue=QuantumRange*yellow
    [all...]
gem.c 75 % blue) triple.
80 % const double luma,double *red,double *green,double *blue)
87 % o red, green, blue: A pointer to a pixel component of type Quantum.
91 const double luma,double *red,double *green,double *blue)
107 assert(blue != (double *) NULL);
152 *blue=QuantumRange*(b+m);
168 % blue) triple. Since HCL colorspace is wider than RGB, we instead choose a
174 % const double luma,double *red,double *green,double *blue)
181 % o red, green, blue: A pointer to a pixel component of type Quantum.
185 const double luma,double *red,double *green,double *blue)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
pixel_format_f32.rsh 7 // 1. Initially, it stores the input color (red, green, blue) and the depth
17 // the color (red, green, blue) of FocusPixel is updated and ready to be used in
21 // the color (red, green, blue) of FocusPixel is *not* changed.
29 float blue;
53 float blue;
  /external/python/cpython3/Lib/tkinter/test/test_tkinter/
test_misc.py 35 root.tk_setPalette(background='blue', highlightColor='yellow')
36 self.assertEqual(root['background'], 'blue')
38 root.tk_setPalette(background='yellow', highlightColor='blue')
40 self.assertEqual(root['highlightcolor'], 'blue')
49 root.tk_setPalette, highlightColor='blue')
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
pixel_format_f32.rsh 7 // 1. Initially, it stores the input color (red, green, blue) and the depth
17 // the color (red, green, blue) of FocusPixel is updated and ready to be used in
21 // the color (red, green, blue) of FocusPixel is *not* changed.
29 float blue;
53 float blue;
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
InvocationTest.java 123 Marker blue = MarkerFactory.getMarker("BLUE"); local
124 logger.trace(blue, "hello");
125 logger.debug(blue, "hello");
126 logger.info(blue, "hello");
127 logger.warn(blue, "hello");
128 logger.error(blue, "hello");
130 logger.debug(blue, "hello {}", "world");
131 logger.info(blue, "hello {}", "world");
132 logger.warn(blue, "hello {}", "world")
    [all...]
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/
Color.kt 35 * val (red, green, blue) = myColor
49 * val (red, green, blue) = myColor
58 * is "blue".
63 * val (red, green, blue) = myColor
77 * val (red, green, blue, alpha) = myColor
92 * The following example creates a purple color by blending opaque blue with
130 * Return the blue component of a color int. This is equivalent to calling:
132 * Color.blue(myInt)
135 inline val @receiver:ColorInt Int.blue get() = this and 0xff
146 * val (alpha, red, green, blue) = myColo
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [all...]
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/dummydata/
Cheeses.java 36 "Baylough", "Beaufort", "Beauvoorde", "Beenleigh Blue", "Beer Cheese", "Bel Paese",
39 "Bleu de Septmoncel", "Bleu Des Causses", "Blue", "Blue Castello", "Blue Rathgore",
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
49 "Buxton Blue", "Cabecou", "Caboc", "Cabrales", "Cachaille", "Caciocavallo", "Caciotta",
52 "Capriole Banon", "Carre de l'Est", "Casciotta di Urbino", "Cashel Blue", "Castellano",
64 "Cypress Grove Chevre", "Danablu (Danish Blue)", "Danbo", "Danish Fontina",
66 "Dessertnyj Belyj", "Devon Blue", "Devon Garland", "Dolcelatte", "Doolin"
    [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/slf4j/slf4j-jdk14/src/test/java/org/slf4j/
InvocationTest.java 128 Marker blue = MarkerFactory.getMarker("BLUE"); local
129 logger.debug(blue, "hello");
130 logger.info(blue, "hello");
131 logger.warn(blue, "hello");
132 logger.error(blue, "hello");
134 logger.debug(blue, "hello {}", "world");
135 logger.info(blue, "hello {}", "world");
136 logger.warn(blue, "hello {}", "world");
137 logger.error(blue, "hello {}", "world")
    [all...]
  /external/freetype/src/autofit/
afblue.dat 3 // Auto-fitter data for blue strings.
15 // This file contains data specific to blue zones. It gets processed by
67 // fixed-size arrays at compile time for further processing of the blue zone
73 // The blue zone string data, to be used in the blue stringsets below.
211 // blue zone, which must be always present
552 // The blue zone stringsets, as used in the script styles, cf. `afstyles.h'.
557 // A blue zone in general is defined by a reference and an overshoot line.
559 // are set equal to the reference value, provided that the blue zone is not
560 // wider than 0.75 pixels (otherwise the blue zone gets ignored). Al
    [all...]
  /system/core/libpixelflinger/
col32cb16blend.S 48 and r4, r9, r1, lsr #16 // extract blue
51 mov r4, r4, lsl #5 // prescale blue
59 and r8, r8, #0x1f // extract dest blue
63 smlabb r8, r8, r5, r4 // dest blue * alpha + src blue
69 orr r6, r8, lsr #8 // shift blue into 565

Completed in 1219 milliseconds

1 2 34 5 6 7 8 91011>>