/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_colorizer.py | 3 from idlelib import colorizer 14 usercfg = colorizer.idleConf.userCfg 34 colorizer.idleConf.userCfg = testcfg 38 colorizer.idleConf.userCfg = usercfg 44 self.assertEqual(colorizer.any('test', ('a', 'b', 'cd')), 49 self.assertTrue(colorizer.make_pat()) 52 prog = colorizer.prog 67 idprog = colorizer.idprog 93 colorizer.color_config(text) 120 self.color = colorizer.ColorDelegator() [all …]
|
/external/skia/src/gpu/gradients/ |
D | GrTiledGradientEffect.h | 24 std::unique_ptr<GrFragmentProcessor> colorizer, in Make() argument 28 std::move(colorizer), std::move(gradLayout), mirror, makePremul, colorsAreOpaque)); in Make() 35 GrTiledGradientEffect(std::unique_ptr<GrFragmentProcessor> colorizer, in GrTiledGradientEffect() argument 46 SkASSERT(colorizer); in GrTiledGradientEffect() 48 this->registerChildProcessor(std::move(colorizer)); in GrTiledGradientEffect()
|
D | GrClampedGradientEffect.h | 25 std::unique_ptr<GrFragmentProcessor> colorizer, in Make() argument 29 std::move(colorizer), std::move(gradLayout), leftBorderColor, rightBorderColor, in Make() 37 GrClampedGradientEffect(std::unique_ptr<GrFragmentProcessor> colorizer, in GrClampedGradientEffect() argument 50 SkASSERT(colorizer); in GrClampedGradientEffect() 52 this->registerChildProcessor(std::move(colorizer)); in GrClampedGradientEffect()
|
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 | 194 std::unique_ptr<GrFragmentProcessor> colorizer = make_colorizer( in make_gradient() local 196 if (colorizer == nullptr) { in make_gradient() 211 master = GrTiledGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient() 215 master = GrTiledGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient() 223 master = GrClampedGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient() 229 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 = process(colorizer, t);
|
D | GrTiledGradientEffect.fp | 10 in fragmentProcessor colorizer; 43 sk_OutColor = process(colorizer, t);
|
/external/skqp/src/gpu/gradients/ |
D | GrTiledGradientEffect.h | 22 std::unique_ptr<GrFragmentProcessor> colorizer, in Make() argument 26 std::move(colorizer), std::move(gradLayout), mirror, makePremul, colorsAreOpaque)); in Make() 33 GrTiledGradientEffect(std::unique_ptr<GrFragmentProcessor> colorizer, in GrTiledGradientEffect() argument 44 this->registerChildProcessor(std::move(colorizer)); in GrTiledGradientEffect()
|
D | GrClampedGradientEffect.h | 23 std::unique_ptr<GrFragmentProcessor> colorizer, in Make() argument 27 std::move(colorizer), std::move(gradLayout), leftBorderColor, rightBorderColor, in Make() 35 GrClampedGradientEffect(std::unique_ptr<GrFragmentProcessor> colorizer, in GrClampedGradientEffect() argument 48 this->registerChildProcessor(std::move(colorizer)); in GrClampedGradientEffect()
|
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 | 192 std::unique_ptr<GrFragmentProcessor> colorizer = make_colorizer( in make_gradient() local 194 if (colorizer == nullptr) { in make_gradient() 209 master = GrTiledGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient() 213 master = GrTiledGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient() 221 master = GrClampedGradientEffect::Make(std::move(colorizer), std::move(layout), in make_gradient() 227 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 = process(colorizer, t);
|
D | GrTiledGradientEffect.fp | 10 in fragmentProcessor colorizer; 43 sk_OutColor = process(colorizer, t);
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/vscode/ |
D | README | 7 This colorizer was generate by the vscode-generator tool "Yo Code" 9 text TableGen.tmLanguage syntax colorizer in utils/textmate. This README was 12 To install this VSCode .td file colorizer, copy it to the following locations
|
/external/harfbuzz_ng/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…
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/vscode/tablegen/ |
D | README.md | 3 This VSCode colorizer extension is a translation of the textmate bunble to 7 To install this VSCode .td file colorizer, copy it to the following locations
|
/external/python/cpython3/Lib/idlelib/ |
D | textview.py | 9 from idlelib.colorizer import color_config
|
D | NEWS.txt | 10 bpo-36152: Remove colorizer.ColorDelegator.close_when_done and the 14 bpo-36096: Make colorizer state variables instance-only. 18 bpo-35689: Add docstrings and tests for colorizer. 215 right, as is valid. Revise and extend colorizer test. 626 Add test for IDLE syntax colorizer. 655 - Issue #27117: Make colorizer htest and turtledemo work with dark themes.
|
D | README.txt | 39 colorizer.py # Colorize text (nim)
|
/external/python/cpython3/Lib/turtledemo/ |
D | __main__.py | 92 from idlelib.colorizer import ColorDelegator, color_config
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.3rc1.rst | 1002 Remove colorizer.ColorDelegator.close_when_done and the corresponding 1032 Refactor class variables to instance variables in colorizer. 1070 Add docstrings and unittests for colorizer.py.
|
D | 3.6.0a2.rst | 519 colorizer. 596 Make colorizer htest and turtledemo work with dark themes. Move code for
|
D | 3.7.0b4.rst | 426 starting at the right, as is valid. Revise and extend colorizer test.
|
D | 3.6.6rc1.rst | 816 starting at the right, as is valid. Revise and extend colorizer test.
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.5.rst | 418 Prevent traceback when removing syntax colorizer in IDLE.
|