Home
last modified time | relevance | path

Searched refs:black (Results 1 – 25 of 228) sorted by relevance

12345678910

/external/selinux/policycoreutils/mcstrans/share/examples/urcsts-via-include/
Dsecolor.conf2 color black = #000000
11 user * = black black
12 role * = black black
13 type * = black black
14 range s0-s0:c0.c1023 = black green
15 range s1-s1:c0.c1023 = black green
16 range s3-s3:c0.c1023 = black tan
18 range s7-s7:c0.c1023 = black red
19 range s9-s9:c0.c1023 = black orange
20 range s15:c0.c1023 = black yellow
/external/selinux/policycoreutils/mcstrans/share/examples/urcsts/
Dsecolor.conf2 color black = #000000
11 user * = black black
12 role * = black black
13 type * = black black
14 range s0-s0:c0.c1023 = black green
15 range s1-s1:c0.c1023 = black green
16 range s3-s3:c0.c1023 = black tan
18 range s7-s7:c0.c1023 = black red
19 range s9-s9:c0.c1023 = black orange
20 range s15:c0.c1023 = black yellow
/external/eigen/blas/testing/
Drunblastest.sh3 black='\E[30m'
21 echo -e $red Test $1 failed: $black
24 echo -e $black
29 echo -e $red "Test $1 failed (FATAL ERROR, read the file $1.summ for details)" $black
32 echo -e $black
37 … $red "Test $1 failed (FAILED THE TESTS OF ERROR-EXITS, read the file $1.summ for details)" $black
40 echo -e $black
44 echo -e $green Test $1 passed$black
/external/eigen/test/eigen2/
Druntest.sh3 black='\E[30m'
14 echo -e $red Test $1 failed: $black
17 echo -e $black
20 echo -e $green Test $1 passed$black
23 echo -e $red Build of target $1 failed: $black
26 echo -e $black
/external/mesa3d/docs/
Dmesa.css5 color: black;
12 color: black;
18 color: black;
24 color: black;
31 /*color: black;*/
/external/opencv3/samples/python2/
Dcontours.py17 black, white = 0, 255
31 cv2.ellipse( img, (dx+115, dy+70), (30,20), 0, 0, 360, black, -1 )
32 cv2.ellipse( img, (dx+185, dy+70), (30,20), 0, 0, 360, black, -1 )
35 cv2.ellipse( img, (dx+115, dy+70), (5,5), 0, 0, 360, black, -1 )
36 cv2.ellipse( img, (dx+185, dy+70), (5,5), 0, 0, 360, black, -1 )
37 cv2.ellipse( img, (dx+150, dy+100), (10,5), 0, 0, 360, black, -1 )
38 cv2.ellipse( img, (dx+150, dy+150), (40,10), 0, 0, 360, black, -1 )
/external/opencv3/samples/cpp/
Dcontours2.cpp50 const Scalar black = Scalar(0); in main() local
65 ellipse( img, Point(dx+115, dy+70), Size(30,20), 0, 0, 360, black, -1, 8, 0 ); in main()
66 ellipse( img, Point(dx+185, dy+70), Size(30,20), 0, 0, 360, black, -1, 8, 0 ); in main()
69 ellipse( img, Point(dx+115, dy+70), Size(5,5), 0, 0, 360, black, -1, 8, 0 ); in main()
70 ellipse( img, Point(dx+185, dy+70), Size(5,5), 0, 0, 360, black, -1, 8, 0 ); in main()
71 ellipse( img, Point(dx+150, dy+100), Size(10,5), 0, 0, 360, black, -1, 8, 0 ); in main()
72 ellipse( img, Point(dx+150, dy+150), Size(40,10), 0, 0, 360, black, -1, 8, 0 ); in main()
/external/eigen/test/
Druntest.sh3 black='\E[30m'
13 echo -e $red Test $1 failed: $black
16 echo -e $black
19 echo -e $green Test $1 passed$black
/external/jetty/src/java/org/eclipse/jetty/server/handler/
DProxyHandler.java37 public ProxyHandler(Handler handler, String[] white, String[] black) in ProxyHandler() argument
39 super(handler,white,black); in ProxyHandler()
47 public ProxyHandler(String[] white, String[] black) in ProxyHandler() argument
49 super(white,black); in ProxyHandler()
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417BarcodeRow.cpp36 void CBC_BarcodeRow::set(int32_t x, FX_BOOL black) { in set() argument
37 m_row.SetAt(x, (uint8_t)(black ? 1 : 0)); in set()
39 void CBC_BarcodeRow::addBar(FX_BOOL black, int32_t width) { in addBar() argument
41 set(m_currentLocation++, black); in addBar()
DBC_PDF417BarcodeRow.h14 void set(int32_t x, FX_BOOL black);
15 void addBar(FX_BOOL black, int32_t width);
/external/selinux/policycoreutils/mcstrans/share/examples/non-mls-color/
Dsecolor.conf2 color black = #000000
11 user * = black green
12 role * = white black
/external/vulkan-validation-layers/tests/
D_vkvalidatelayerdoc.ps112 write-host -background black -foreground green "[ RUN ] " -nonewline
23 write-host -background black -foreground green "[ PASSED ] " -nonewline;
27 write-host -background black -foreground red "[ FAILED ] " -nonewline;
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
Djquery.treeview.css56 .treeview-black li { background-image: url(images/treeview-black-line.gif); }
57 .treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { b…
/external/opencv3/modules/calib3d/src/
Dcheckchessboard.cpp133 IplImage* black = cvCloneImage(src); in cvCheckChessboard() local
136 cvDilate(black, black, NULL, erosion_count); in cvCheckChessboard()
154 cvThreshold(black, thresh, thresh_level, 255, CV_THRESH_BINARY_INV); in cvCheckChessboard()
203 cvReleaseImage(&black); in cvCheckChessboard()
/external/skia/tests/
DPDFOpaqueSrcModeToSrcOverTest.cpp15 SkPaint black; in run_test() local
21 c->drawRect(SkRect::MakeXYWH(36.0f, 36.0f, 9.0f, 9.0f), black); in run_test()
23 c->drawRect(SkRect::MakeXYWH(108.0f, 108.0f, 9.0f, 9.0f), black); in run_test()
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/
Dtestharness.css7 color: black;
18 border: 1px solid black;
50 border-bottom:medium solid black;
56 border-bottom:thin solid black;
/external/dng_sdk/source/
Ddng_render.cpp34 real64 black, in dng_function_exposure_ramp() argument
37 : fSlope ((white == black) ? 0.0f : 1.0 / (white - black)) in dng_function_exposure_ramp()
38 , fBlack (black) in dng_function_exposure_ramp()
921 real64 black = fParams.Shadows () * in Start() local
926 black = Min_real64 (black, 0.99 * white); in Start()
929 black, in Start()
930 black); in Start()
/external/doclava/res/assets/templates/
Dtodo.cs10 border-color: black black black black;
/external/libvorbis/doc/
DVorbis_I_spec.css48 .overline img{ border-top: 1px solid black; }
53 .fbox {padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
55 …; clear:both; padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
63 .underline img{ border-bottom: 1px solid black; margin-bottom:1pt; }
64 ….framebox-r { padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
79 table[rules] {border-left:solid black 0.4pt; border-right:solid black 0.4pt; }
84 table[rules] {border-left:solid black 0.4pt; border-right:solid black 0.4pt; }
/external/chromium-trace/catapult/third_party/Paste/docs/
Ddefault.css32 color: black;
140 border: thin solid black;
149 border: medium solid black;
159 border: medium solid black;
176 border: thick solid black;
249 border: thin black solid;
294 border-left: solid thin black;
/external/autotest/tko/
Dvertical_text.py30 black = im.colorAllocate((0, 0, 0))
35 im.string_ttf(FONT, 10.0, 1.56, (15, 190), sys.argv[1], black)
/external/libpng/contrib/pngsuite/
DREADME42 ftbbn0g01.png 1-bit grayscale, black bKGD
43 ftbbn0g02.png 2-bit grayscale, black bKGD
44 ftbbn0g04.png 4-bit grayscale, black bKGD
45 ftbbn2c16.png 16-bit truecolor, black bKGD
46 ftbbn3p08.png 8-bit paletted, black bKGD
/external/replicaisland/tools/
DExtractPoints.js196 var black = new SolidColor; variable
197 black.rgb.red = 0;
198 black.rgb.blue = 0;
199 black.rgb.green = 0;
234 newDoc.selection.stroke(black, 2);
/external/skia/site/
Droles.md27 <tr style="background-color:#e6b8af;color:black;">
37 <tr style="background-color:#ffe599;color:black;">
49 <tr style="background-color:#d0e0e3;color:black;">

12345678910