/third_party/python/Lib/idlelib/idle_test/ |
D | test_colorizer.py | 2 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/ |
D | GrTiledGradientEffect.h | 20 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()
|
D | GrClampedGradientEffect.h | 20 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/ |
D | README.md | 6 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
|
D | GrGradientShader.cpp | 509 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 …]
|
/third_party/flutter/skia/src/gpu/gradients/ |
D | README.md | 23 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
|
D | GrGradientShader.cpp | 197 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()
|
D | GrClampedGradientEffect.fp | 17 in fragmentProcessor colorizer; 31 // colorizer FP, so delegate to the child processor. 41 sk_OutColor = sample(colorizer, t);
|
D | GrTiledGradientEffect.fp | 10 in fragmentProcessor colorizer; 43 sk_OutColor = sample(colorizer, t);
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/ |
D | hb-diff-colorize | 6 colorizer = DiffColorizer (formatter=formatter) variable 7 UtilMains.process_multiple_files (FilterHelpers.filter_printer_function_no_newline (colorizer.color…
|
/third_party/harfbuzz/test/shaping/ |
D | hb-diff-colorize | 6 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/ |
D | hb-diff-colorize | 6 colorizer = DiffColorizer (formatter=formatter) variable 7 UtilMains.process_multiple_files (FilterHelpers.filter_printer_function_no_newline (colorizer.color…
|
/third_party/python/Lib/idlelib/ |
D | textview.py | 9 from idlelib.colorizer import color_config
|
D | NEWS.txt | 273 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.
|
D | README.txt | 39 colorizer.py # Colorize text (nim)
|
D | pyshell.py | 50 from idlelib.colorizer import ColorDelegator
|
D | editor.py | 51 from idlelib.colorizer import ColorDelegator, color_config
|
D | ChangeLog | 786 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/ |
D | 3.6.0a2.rst | 519 colorizer. 596 Make colorizer htest and turtledemo work with dark themes. Move code for
|
D | 3.8.0a3.rst | 803 Remove colorizer.ColorDelegator.close_when_done and the corresponding 824 Refactor class variables to instance variables in colorizer.
|
D | 3.7.0b4.rst | 425 starting at the right, as is valid. Revise and extend colorizer test.
|
D | 3.8.0a2.rst | 544 Add docstrings and unittests for colorizer.py.
|
D | 3.6.6rc1.rst | 816 starting at the right, as is valid. Revise and extend colorizer test.
|
D | 3.5.2rc1.rst | 1694 Make colorizer htest and turtledemo work with dark themes. Move code for
|
/third_party/python/Lib/turtledemo/ |
D | __main__.py | 92 from idlelib.colorizer import ColorDelegator, color_config
|