Home
last modified time | relevance | path

Searched refs:black (Results 1 - 25 of 146) sorted by relevance

123456

/third_party/skia/docs/examples/
H A D50_percent_gray.cpp24 SkPaint black; in draw() local
25 canvas->drawString("BW Dither", 0, 125, font, black); in draw()
33 canvas->drawString("Scaled Dither", 0, 125, font, black); in draw()
35 // Blend black on to white in draw()
41 canvas->drawString("Blend", 0, 125, font, black); in draw()
47 canvas->drawString("0xFFBCBCBC", 0, 125, font, black); in draw()
53 canvas->drawString("0xFF808080", 0, 125, font, black); in draw()
H A DMatrix_getPerspY.cpp13 SkPaint black; in REG_FIDDLE() local
14 black.setAntiAlias(true); in REG_FIDDLE()
15 black.setTextSize(24); in REG_FIDDLE()
16 SkPaint gray = black; in REG_FIDDLE()
22 canvas->drawString(string, 0, 0, black); in REG_FIDDLE()
H A DMatrix_getPerspX.cpp13 SkPaint black; in REG_FIDDLE() local
14 black.setAntiAlias(true); in REG_FIDDLE()
15 black.setTextSize(24); in REG_FIDDLE()
16 SkPaint gray = black; in REG_FIDDLE()
22 canvas->drawString(string, 0, 0, black); in REG_FIDDLE()
H A DMemberIndex.cpp8 SkPaint black; in REG_FIDDLE() local
9 black.setAntiAlias(true); in REG_FIDDLE()
10 black.setTextSize(48); in REG_FIDDLE()
11 SkPaint gray = black; in REG_FIDDLE()
24 canvas->drawString("&", 0, 0, black); in REG_FIDDLE()
/third_party/libabigail/src/
H A Dabg-viz-common.cc35 { "'ArialMT'", 12, color::black, R"(text-anchor="middle")"};
38 { "Source Code Pro Light", 12, color::black, R"(text-anchor="middle")"};
41 { "Roboto Light", 12, color::black, R"(text-anchor="middle")"};
43 const style primary_row_sty = { color::white, color::black, "" };
45 const style member_row_sty = { color::black, color::gray25, "" };
46 const style implementation_row_sty = { color::black, color::white, "" };
96 case color::black: in color_to_string()
97 ret = "black"; in color_to_string()
H A Dabg-viz-dot.cc25 const style parent_sty = { color::white, color::black, "" };
91 std::string strip = R"_delimiter_([label="__label", height=__height, width=__width, color="black", fillcolor="white", style="filled"];)_delimiter_"; in add_node()
/third_party/ffmpeg/libavfilter/
H A Dvf_exposure.c34 float black; member
49 const float black = s->black; in exposure_slice() local
57 ptr[x] = (ptr[x] - black) * scale; in exposure_slice()
71 s->scale = 1.f / (exp2f(-s->exposure) - s->black); in filter_frame()
110 { "black", "set the black level correction", OFFSET(black), AV_OPT_TYPE_FLOAT, {.dbl=0}, -1, 1, VF },
H A Dvf_lumakey.c36 int black; member
53 const int b = s->black; in do_lumakey_slice8()
85 const int b = s->black; in do_lumakey_slice16()
118 s->black = av_clip_uint8((s->threshold - s->tolerance) * 255); in config_input()
124 s->black = av_clip((s->threshold - s->tolerance) * s->max, 0, s->max); in config_input()
H A Dvf_readeia608.c64 int black; member
184 int black = 0, white = 0; in find_black_and_white() local
207 black = i; in find_black_and_white()
219 scan->black = black; in find_black_and_white()
274 distance_from_black = FFABS(line[i].input - scan->black); in thresholding()
377 if (scan->white - scan->black < 5) in extract_line()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLPreRotationTest.cpp52 // Lower-left, which is (-1.0,-1.0) & ( 0, 0) in GLES will be black (0x00, 0x00, 0x00, 0xFF)
220 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::black); in testDrawingAndReadPixels()
230 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::black); in testDrawingAndReadPixels()
356 std::vector<GLfloat> redGreenData = {// green(0,1), black(0,0), red(1,0), yellow(1,1) in TEST_P()
460 std::vector<GLfloat> redGreenData = {// green(0,110), black(0,0), red(115,0), yellow(120,125) in TEST_P()
565 std::vector<GLfloat> redGreenData = {// green(0,1), black(0,0), red(1,0), yellow(1,1) in TEST_P()
610 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::black); in TEST_P()
730 // When scaling horizontally, the "black" and "green" colors have a 1 in the red component
733 // When scaling vertically, the "black" and "red" colors have a 1 in the green component
790 std::vector<GLfloat> redGreenData = {// green(0,1), black( in initializeGeometry()
[all...]
H A DEGLBufferAgeTest.cpp187 GLColor::white, GLColor::yellow, GLColor::black, GLColor::magenta, kLightGray, in TEST_P()
188 GLColor::black, // Extra loops until color cycled through in TEST_P()
189 GLColor::black, GLColor::black, GLColor::black, GLColor::black}; in TEST_P()
192 angle::GLColor expectedColor = GLColor::black; in TEST_P()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/
H A DDrawTextureTest.cpp97 EXPECT_PIXEL_COLOR_EQ(x, y + 1, GLColor::black); in TEST_P()
98 EXPECT_PIXEL_COLOR_EQ(x + 1, y + 1, GLColor::black); in TEST_P()
99 EXPECT_PIXEL_COLOR_EQ(x + 2, y, GLColor::black); in TEST_P()
100 EXPECT_PIXEL_COLOR_EQ(x + 3, y, GLColor::black); in TEST_P()
122 // This color is set to black on purpose to ensure that the color in the upcoming vertex array in TEST_P()
126 glColorPointer(4, GL_FLOAT, 0, &GLColor::black); in TEST_P()
/third_party/skia/tests/
H A DPDFOpaqueSrcModeToSrcOverTest.cpp16 SkPaint black; in run_test() local
22 c->drawRect(SkRect::MakeXYWH(36.0f, 36.0f, 9.0f, 9.0f), black); in run_test()
24 c->drawRect(SkRect::MakeXYWH(108.0f, 108.0f, 9.0f, 9.0f), black); in run_test()
/third_party/ffmpeg/tests/fate/
H A Dlossless-video.mak17 fate-lagarith-ticket4119: CMD = framecrc -i $(TARGET_SAMPLES)/lagarith/lagarith-1.3.27-black-frames-and-off-by-ones.avi
18 fate-lagarith-ticket4119-cfr : CMD = framecrc -i $(TARGET_SAMPLES)/lagarith/lagarith-1.3.27-black-frames-and-off-by-ones.avi -vsync cfr
19 fate-lagarith-ticket4119-vfr : CMD = framecrc -i $(TARGET_SAMPLES)/lagarith/lagarith-1.3.27-black-frames-and-off-by-ones.avi -vsync vfr
20 fate-lagarith-ticket4119-pass: CMD = framecrc -i $(TARGET_SAMPLES)/lagarith/lagarith-1.3.27-black-frames-and-off-by-ones.avi -vsync passthrough
/third_party/backends/backend/
H A Dgt68xx_high.c229 "gt68xx_calibrator_add_black_line: line: %2d medium black: 0x%02x\n", in gt68xx_calibrator_add_black_line()
262 unsigned int black = cal->black_line[i]; in gt68xx_calibrator_finish_setup() local
263 unsigned int diff = (white > black) ? white - black : 1; in gt68xx_calibrator_finish_setup()
267 cal->k_black[i] = black; in gt68xx_calibrator_finish_setup()
269 ave_black += black; in gt68xx_calibrator_finish_setup()
294 unsigned int black = cal->k_black[i]; in gt68xx_calibrator_process_line() local
297 if (src_value > black) in gt68xx_calibrator_process_line()
299 value = (src_value - black) * white_level / cal->k_white[i]; in gt68xx_calibrator_process_line()
312 if (src_value < black) in gt68xx_calibrator_process_line()
998 SANE_Int black; /* minimum black (0-255) */ global() member
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtypeSatisfaction_propertyValueConformance3.js7 black: { r: 0, g: 0, d: 0 }, // <- oops! 'd' in place of 'b'
19 black: { r: 0, g: 0, d: 0 },
/third_party/icu/tools/colprobe/
H A DdoComparisonTable.pl32 border: 1px solid black }
33 td, th { width: 10%; border-spacing: 0; border-collapse: collapse; color: black;
34 vertical-align: top; border: 1px solid black }
H A DcreateComparisonTables.pl30 border: 1px solid black }
31 td, th { width: 10%; border-spacing: 0; border-collapse: collapse; color: black;
32 vertical-align: top; border: 1px solid black }
/third_party/cJSON/tests/unity/auto/
H A Dcolour_prompt.rb41 when :black then 0
84 when :black then 30
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_border_color.c38 * colors are the same (typically black or white), we maintain a hash
42 * If it ever does fill up, we simply return the black border. We
85 union pipe_color_union black = {.f = { 0.0, 0.0, 0.0, 1.0 }}; in iris_init_border_color_pool() local
86 ASSERTED uint32_t black_offset = iris_upload_border_color(pool, &black); in iris_init_border_color_pool()
123 fprintf(stderr, "Border color pool is full. Using black instead.\n"); in iris_upload_border_color()
/third_party/unity/auto/
H A Dcolour_prompt.rb42 when :black then 0
85 when :black then 30
/third_party/rust/crates/codespan/codespan-reporting/examples/
H A Dreadme_preview.rs120 pre .fg.black {{ color: #1d1f21; }} in main()
129 pre .fg.black.bright {{ color: #969896; }} in main()
138 pre .bg.black {{ background-color: #1d1f21; }} in main()
147 pre .bg.black.bright {{ background-color: #969896; }} in main()
301 Color::Black => write!(writer, "black"), in set_color()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DBindGroupTests.cpp1266 wgpu::Buffer black = in TEST_P() local
1306 DoTest(black, black, black, RGBA8(0, 0, 0, 0)); in TEST_P()
1310 DoTest(red, black, black, RGBA8(64, 0, 0, 0)); in TEST_P()
1311 DoTest(green, black, black, RGBA8(0, 64, 0, 0)); in TEST_P()
1312 DoTest(blue, black, black, RGBA in TEST_P()
[all...]
/third_party/node/deps/npm/node_modules/qrcode-terminal/lib/
H A Dmain.js3 black = "\033[40m \033[0m",
6 return isBlack ? black : white;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderBuiltinTestsEXT.cpp1244 const tcu::Vec4 black = getClearColor(); in createInstance() local
1247 return new QuadrantsInstance(context, iterationParams, blue, black, black, black); in createInstance()
1355 const tcu::Vec4 black = getClearColor(); in createInstance() local
1358 return new QuadrantsInstance(context, iterationParams, blue, black, black, black); in createInstance()
1471 const tcu::Vec4 black = getClearColor(); in createInstance() local
1475 return new QuadrantsInstance(context, iterationParams, blue, white, black, blac in createInstance()
2429 const tcu::Vec4 black = getClearColor(); createInstance() local
[all...]

Completed in 16 milliseconds

123456