Home
last modified time | relevance | path

Searched refs:colorizer (Results 1 – 25 of 27) sorted by relevance

12

/third_party/python/Lib/idlelib/idle_test/
Dtest_colorizer.py2 from idlelib import colorizer
15 usercfg = colorizer.idleConf.userCfg
58 colorizer.idleConf.userCfg = testcfg
62 colorizer.idleConf.userCfg = usercfg
68 self.assertEqual(colorizer.any('test', ('a', 'b', 'cd')),
73 self.assertTrue(colorizer.make_pat())
76 prog = colorizer.prog
91 idprog = colorizer.idprog
117 colorizer.color_config(text)
144 self.color = colorizer.ColorDelegator()
[all …]
/third_party/flutter/skia/src/gpu/gradients/generated/
DGrTiledGradientEffect.h20 std::unique_ptr<GrFragmentProcessor> colorizer, in Make() argument
24 std::move(colorizer), std::move(gradLayout), mirror, makePremul, colorsAreOpaque)); in Make()
36 GrTiledGradientEffect(std::unique_ptr<GrFragmentProcessor> colorizer, in GrTiledGradientEffect() argument
47 SkASSERT(colorizer); in GrTiledGradientEffect()
49 this->registerChildProcessor(std::move(colorizer)); in GrTiledGradientEffect()
DGrClampedGradientEffect.h20 std::unique_ptr<GrFragmentProcessor> colorizer, in Make() argument
24 std::move(colorizer), std::move(gradLayout), leftBorderColor, rightBorderColor, in Make()
38 GrClampedGradientEffect(std::unique_ptr<GrFragmentProcessor> colorizer, in GrClampedGradientEffect() argument
51 SkASSERT(colorizer); in GrClampedGradientEffect()
53 this->registerChildProcessor(std::move(colorizer)); in GrClampedGradientEffect()
/third_party/skia/src/gpu/gradients/
DGrGradientShader.cpp509 std::unique_ptr<GrFragmentProcessor> colorizer = makeDualIntervalColorizer(); in make_colorizer() local
510 if (colorizer) { in make_colorizer()
511 return colorizer; in make_colorizer()
514 colorizer = caps->nonconstantArrayIndexSupport() in make_colorizer()
517 if (colorizer) { in make_colorizer()
518 return colorizer; in make_colorizer()
536 std::unique_ptr<GrFragmentProcessor> colorizer, in make_clamped_gradient() argument
589 "colorizer", GrSkSLFP::IgnoreOptFlags(std::move(colorizer)), in make_clamped_gradient()
600 std::unique_ptr<GrFragmentProcessor> colorizer, in make_tiled_gradient() argument
660 "colorizer", GrSkSLFP::IgnoreOptFlags(std::move(colorizer)), in make_tiled_gradient()
[all …]
DREADME.md6 1. A color interpolator ("colorizer") that is one dimensional, returning a color
22 colorizer child, but these border colors may be defined by the gradient color
26 output color using the colorizer child processor.
40 black and does not invoke the colorizer at all. When the gradient location is valid,
41 the top-level effect samples from the colorizer at the explicit coordinate (t, 0). The
42 y coordinate will always be zero and can be ignored by the colorizer.
46 colorize a gradient; in this case, a `GrTextureEffect` will be used as the colorizer.
58 is assumed that all colorizer FPs will be compatible with coverage as alpha and
63 that is unlikely, this convention really simplifies the colorizer
/third_party/flutter/skia/src/gpu/gradients/
DREADME.md23 colorizer child, but these border colors may be defined by the gradient color
27 color using their child colorizer process.
31 t value and the 4D inputs/outputs of the layout and colorizer processes. For
39 are passed into the colorizer unmodified. The colorizer should assume that the
55 is assumed that all colorizer FPs will be compatible with coverage as alpha and
60 that is unlikely, this convention really simplifies the colorizer
DGrGradientShader.cpp197 std::unique_ptr<GrFragmentProcessor> colorizer = make_colorizer( in make_gradient() local
199 if (colorizer == nullptr) { in make_gradient()
214 master = GrTiledGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient()
218 master = GrTiledGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient()
226 master = GrClampedGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient()
232 master = GrClampedGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient()
DGrClampedGradientEffect.fp17 in fragmentProcessor colorizer;
31 // colorizer FP, so delegate to the child processor.
41 sk_OutColor = sample(colorizer, t);
DGrTiledGradientEffect.fp10 in fragmentProcessor colorizer;
43 sk_OutColor = sample(colorizer, t);
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/
Dhb-diff-colorize6 colorizer = DiffColorizer (formatter=formatter) variable
7 UtilMains.process_multiple_files (FilterHelpers.filter_printer_function_no_newline (colorizer.color…
/third_party/harfbuzz/test/shaping/
Dhb-diff-colorize6 colorizer = DiffColorizer (formatter=formatter) variable
7 UtilMains.process_multiple_files (FilterHelpers.filter_printer_function_no_newline (colorizer.color…
/third_party/skia/third_party/externals/harfbuzz/test/shape/
Dhb-diff-colorize6 colorizer = DiffColorizer (formatter=formatter) variable
7 UtilMains.process_multiple_files (FilterHelpers.filter_printer_function_no_newline (colorizer.color…
/third_party/python/Lib/idlelib/
Dtextview.py9 from idlelib.colorizer import color_config
DNEWS.txt273 bpo-36152: Remove colorizer.ColorDelegator.close_when_done and the
277 bpo-36096: Make colorizer state variables instance-only.
284 bpo-35689: Add docstrings and tests for colorizer.
471 right, as is valid. Revise and extend colorizer test.
882 Add test for IDLE syntax colorizer.
911 - Issue #27117: Make colorizer htest and turtledemo work with dark themes.
DREADME.txt39 colorizer.py # Colorize text (nim)
Dpyshell.py50 from idlelib.colorizer import ColorDelegator
Deditor.py51 from idlelib.colorizer import ColorDelegator, color_config
DChangeLog786 that it all remains "string colored" until the colorizer catches up (after
1011 Ho ho ho -- that's trickier than it sounded! The colorizer is working with
/third_party/python/Misc/NEWS.d/
D3.6.0a2.rst519 colorizer.
596 Make colorizer htest and turtledemo work with dark themes. Move code for
D3.8.0a3.rst803 Remove colorizer.ColorDelegator.close_when_done and the corresponding
824 Refactor class variables to instance variables in colorizer.
D3.7.0b4.rst425 starting at the right, as is valid. Revise and extend colorizer test.
D3.8.0a2.rst544 Add docstrings and unittests for colorizer.py.
D3.6.6rc1.rst816 starting at the right, as is valid. Revise and extend colorizer test.
D3.5.2rc1.rst1694 Make colorizer htest and turtledemo work with dark themes. Move code for
/third_party/python/Lib/turtledemo/
D__main__.py92 from idlelib.colorizer import ColorDelegator, color_config

12