/third_party/cups-filters/cupsfilters/ |
D | cmyk.c | 78 int ink, /* Amount of ink */ in cupsCMYKDoBlack() local 127 ink = output[0] + output[1]; in cupsCMYKDoBlack() 129 if (ink > ink_limit) in cupsCMYKDoBlack() 131 output[0] = ink_limit * output[0] / ink; in cupsCMYKDoBlack() 132 output[1] = ink_limit * output[1] / ink; in cupsCMYKDoBlack() 156 ink = output[0] + output[1] + output[2]; in cupsCMYKDoBlack() 158 if (ink > ink_limit) in cupsCMYKDoBlack() 160 output[0] = ink_limit * output[0] / ink; in cupsCMYKDoBlack() 161 output[1] = ink_limit * output[1] / ink; in cupsCMYKDoBlack() 162 output[2] = ink_limit * output[2] / ink; in cupsCMYKDoBlack() [all …]
|
D | lut.c | 48 const char *ink) /* I - Ink name */ in cupsLutLoad() argument 61 if (!ppd || !colormodel || !media || !resolution || !ink) in cupsLutLoad() 68 snprintf(name, sizeof(name), "cups%sDither", ink); in cupsLutLoad()
|
D | driver.h | 161 const char *ink);
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | ink_splash.dart | 80 /// A circular ink feature whose origin starts at the input touch point 83 /// This object is rarely created directly. Instead of creating an ink splash 85 /// gestures (such as tap and long-press) to trigger ink splashes. 89 /// * [InkRipple], which is an ink splash feature that expands more 91 /// * [InkResponse], which uses gestures to trigger ink highlights and ink 94 /// ink response). 95 /// * [Material], which is the widget on which the ink splash is painted. 96 /// * [InkHighlight], which is an ink feature that emphasizes a part of a 110 /// The ink splash is clipped only to the edges of the [Material]. 168 /// Used to specify this type of ink splash for an [InkWell], [InkResponse]
|
D | ink_well.dart | 18 /// An ink feature that displays a [color] "splash" in response to a user 22 /// example a press event might trigger an ink feature that's confirmed 26 /// is recognized. For example a press event might trigger an ink feature 48 /// Typically causes the ink to propagate faster across the material. By default this 54 /// Typically causes the ink to gradually disappear. By default this method does 58 /// The ink's color. 72 /// Interactive ink feature implementations should provide a static const 148 /// [Material] widget is where the ink reactions are actually painted. This 150 /// actually reacting to touches by spreading ink. 161 /// ### The ink splashes aren't visible! [all …]
|
D | ink_ripple.dart | 74 /// A circular ink feature whose origin starts at the input touch point and 78 /// This object is rarely created directly. Instead of creating an ink ripple, 80 /// gestures (such as tap and long-press) to trigger ink splashes. This class 85 /// * [InkSplash], which is an ink splash feature that expands less 87 /// * [InkResponse], which uses gestures to trigger ink highlights and ink 90 /// ink response). 91 /// * [Material], which is the widget on which the ink splash is painted. 92 /// * [InkHighlight], which is an ink feature that emphasizes a part of a 106 /// The ink ripple is clipped only to the edges of the [Material]. 187 /// Used to specify this type of ink splash for an [InkWell], [InkResponse]
|
D | ink_highlight.dart | 15 /// This object is rarely created directly. Instead of creating an ink highlight 17 /// gestures (such as tap and long-press) to trigger ink highlights. 21 /// * [InkResponse], which uses gestures to trigger ink highlights and ink 24 /// ink response). 25 /// * [Material], which is the widget on which the ink highlight is painted. 26 /// * [InkSplash], which is an ink feature that shows a reaction to user input
|
D | material.dart | 14 /// Signature for the callback used by ink effects to obtain the rectangle for the effect. 39 /// A transparent piece of material that draws ink splashes and highlights. 42 /// material itself and do not hide ink effects, in practice the [Material] 43 /// widget draws child widgets on top of the ink effects. 45 /// to show ink effects on top of them. 47 /// Prefer using the [Ink] widget for showing ink effects on top of opaque 81 /// The ink feature will paint as part of this controller. 84 /// Notifies the controller that one of its ink features needs to repaint. 97 /// 3. Ink effects: Material shows ink effects implemented by [InkFeature]s 148 /// widgets that use the [InkFeature] mechanism. Otherwise, in-progress ink [all …]
|
D | ink_decoration.dart | 17 /// over the [Material] (maybe using a [Container] or [DecoratedBox]), these ink 26 /// above the opaque graphics, so that the ink responses from [InkWell]s and 33 /// This widget is subject to the same limitations as other ink effects, as 50 /// on it using [Ink], while still having ink effects over the yellow rectangle: 288 /// This object is rarely created directly. Instead of creating an ink 296 /// * [InkResponse], which uses gestures to trigger ink highlights and ink 299 /// ink response). 300 /// * [Material], which is the widget on which the ink is painted.
|
D | constants.dart | 33 /// The radius of a circular material ink response in logical pixels. 36 /// The amount of time a circular material ink response should take to expand to its full size. 39 /// The value of the alpha channel to use when drawing a circular material ink response.
|
D | debug.dart | 14 /// only used in contexts where they can print ink onto some material. 37 'Material widget that renders ink splashes, for instance. '
|
D | toggleable.dart | 95 /// Some controls have a radial ink reaction to user input. This animation 96 /// controller can be used to start or stop these ink reactions. 319 /// Used by subclasses to paint the radial ink reaction for this control.
|
/third_party/flutter/skia/site/user/modules/ |
D | canvaskit.md | 32 #patheffect, #ink { hashtag 64 <canvas id=ink width=400 height=400></canvas> 237 const surface = CanvasKit.MakeCanvasSurface('ink'); 302 document.getElementById('ink').addEventListener('pointermove', interact); 303 document.getElementById('ink').addEventListener('pointerdown', interact); 304 document.getElementById('ink').addEventListener('lostpointercapture', interact); 305 document.getElementById('ink').addEventListener('pointerup', interact); 306 preventScrolling(document.getElementById('ink'));
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | ink_paint_test.dart | 38 testWidgets('The InkWell widget renders an ink splash', (WidgetTester tester) async { 87 testWidgets('The InkWell widget renders an ink ripple', (WidgetTester tester) async { 150 // center of the ink well. 155 // alpha and its center has moved closer to the ink well's center. 160 // ink well's radius parameter. The splash center has moved to its final 318 // Generate a tap cancel; Will cancel the ink splash before it started
|
D | ink_well_test.dart | 93 testWidgets('ink well changes color on hover', (WidgetTester tester) async { 123 testWidgets('ink response changes color on focus', (WidgetTester tester) async { 158 …testWidgets("ink response doesn't change color on focus when on touch device", (WidgetTester teste…
|
D | ink_splash_test.dart | 25 // start ink animation which asserts for a textDirection.
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/ |
D | cards_demo.dart | 131 … // This ensures that the Card's children (including the ink splash) are clipped correctly. 186 … // This ensures that the Card's children (including the ink splash) are clipped correctly. 272 // In order to have the ink splash appear above the image, you 274 // of the Material and display ink effects above it. Using a 275 // standard Image will obscure the ink splash.
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | size_changed_layout_notifier.dart | 43 /// [SizeChangedLayoutNotification]s, to repaint [InkResponse] and [InkWell] ink 45 /// [SizeChangedLayoutNotifier] will cause the ink effects to correctly repaint
|
/third_party/skia/site/docs/user/modules/ |
D | canvaskit.md | 32 #patheffect, #ink, #shaping, #shader1, #camera3d { hashtag 108 <canvas id=ink width=400 height=400></canvas> 257 const surface = CanvasKit.MakeCanvasSurface('ink'); 315 document.getElementById('ink').addEventListener('pointermove', interact); 316 document.getElementById('ink').addEventListener('pointerdown', interact); 317 document.getElementById('ink').addEventListener('lostpointercapture', interact); 318 document.getElementById('ink').addEventListener('pointerup', interact); 319 preventScrolling(document.getElementById('ink'));
|
/third_party/flutter/skia/third_party/externals/harfbuzz/ |
D | TODO | 28 - Add --width, --height, --auto-size, --ink-box, --align, etc?
|
/third_party/skia/third_party/externals/harfbuzz/ |
D | TODO | 28 - Add --width, --height, --auto-size, --ink-box, --align, etc?
|
/third_party/harfbuzz/ |
D | TODO | 28 - Add --width, --height, --auto-size, --ink-box, --align, etc?
|
/third_party/icu/icu4c/source/data/locales/ |
D | mas.txt | 170 "Olodoyíóríê inkókúâ", 171 "Oloilépūnyīē inkókúâ",
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | mas.txt | 170 "Olodoyíóríê inkókúâ", 171 "Oloilépūnyīē inkókúâ",
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | mas.txt | 170 "Olodoyíóríê inkókúâ", 171 "Oloilépūnyīē inkókúâ",
|