/third_party/harfbuzz/src/ |
D | gen-arabic-table.py | 158 shapes = {} 190 if items[0] not in shapes: 191 shapes[items[0]] = {} 192 shapes[items[0]][shape] = c 198 keys = shapes.keys () 201 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0 217 liga = (shapes[pair[0]]['initial'], shapes[pair[1]]['final']) 219 liga = (shapes[pair[0]]['medial'], shapes[pair[1]]['final'])
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | gen-arabic-table.py | 153 shapes = {} 186 if items[0] not in shapes: 187 shapes[items[0]] = {} 188 shapes[items[0]][shape] = c 194 keys = shapes.keys () 197 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0 213 liga = (shapes[pair[0]]['initial'], shapes[pair[1]]['final']) 215 liga = (shapes[pair[0]]['medial'], shapes[pair[1]]['final'])
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-arabic-table.py | 158 shapes = {} 190 if items[0] not in shapes: 191 shapes[items[0]] = {} 192 shapes[items[0]][shape] = c 198 keys = shapes.keys () 201 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0 217 liga = (shapes[pair[0]]['initial'], shapes[pair[1]]['final']) 219 liga = (shapes[pair[0]]['medial'], shapes[pair[1]]['final'])
|
/third_party/flutter/skia/third_party/externals/sdl/premake/Xcode/Xcode4/tests/testshape/testshape.xcodeproj/ |
D | project.pbxproj | 252 …shapes\" ]; then mkdir -p \"./Build/Debug/shapes\"; fi\ncp ./../../../../../test/shapes/*.bmp \"./…
|
/third_party/flutter/skia/third_party/externals/sdl/premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/ |
D | project.pbxproj | 252 …shapes\" ]; then mkdir -p \"./Build/Debug/shapes\"; fi\ncp ./../../../../../test/shapes/*.bmp \"./…
|
/third_party/flutter/skia/third_party/externals/sdl/premake/Linux/build-scripts/ |
D | run.tests.sh | 82 testspecial "testshape" ./shapes 83 testspecial "testshape" ./shapes 84 testspecial "testshape" ./shapes
|
/third_party/skia/tools/svg/ |
D | svgs.txt | 197 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-circle-01-t.svg 198 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-circle-02-t.svg 199 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-ellipse-01-t.svg 200 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-ellipse-02-t.svg 201 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-ellipse-03-f.svg 202 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-grammar-01-f.svg 203 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-intro-01-t.svg 204 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-intro-02-f.svg 205 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-line-01-t.svg 206 https://www.w3.org/Graphics/SVG/Test/20110816/svg/shapes-line-02-f.svg [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/premake/MinGW/build-scripts/ |
D | run.tests.bat | 41 call :testspecial testshape .\shapes 42 call :testspecial testshape .\shapes 43 call :testspecial testshape .\shapes
|
/third_party/flutter/skia/third_party/externals/sdl/premake/VisualC/build-scripts/ |
D | run.tests.vs2010.bat | 41 call :testspecial testshape .\shapes 42 call :testspecial testshape .\shapes 43 call :testspecial testshape .\shapes
|
/third_party/skia/site/docs/dev/design/ |
D | text_overview.md | 35 …ssing needed to go from just the 'letters' in a sentence, to the actual 'shapes' that must be foun… 39 …ng* from a description of a font, to the actual resource / file / blob containing the drawn shapes. 51 We define a Typeface to be a coherent collection of shapes in a given typograph style (including an… 53 Along with a single Typeface we define the individual *shapes* or images in the typeface as **Glyph…
|
/third_party/glslang/Test/ |
D | hlsl.intrinsics.promote.frag | 21 // Same shapes: 39 // Mixed shapes:
|
/third_party/flutter/glfw/tests/ |
D | cursor.c | 217 const int shapes[] = { in main() local 226 standard_cursors[i] = glfwCreateStandardCursor(shapes[i]); in main()
|
/third_party/skia/docs/examples/ |
D | shapes.cpp | 4 REG_FIDDLE_ANIMATED(shapes, 256, 256, false, 5, 0) {
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | shape_decoration.dart | 84 /// The [BoxDecoration] class is more efficient for shapes that it can 85 /// describe than the [ShapeDecoration] class is for those same shapes, 89 /// different shapes (e.g. from a [CircleBorder] to a 156 /// ## Directionality-dependent shapes 200 /// Linearly interpolate between two shapes.
|
D | notched_shapes.dart | 42 /// The same object can be used to create multiple shapes. 124 /// Two shapes can be provided. The [host] is the shape of the widget that
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofAndIndexedAccess.ts | 139 function f30(shapes: Shape[]) { 140 let names = pluck(shapes, "name"); // string[] 141 let widths = pluck(shapes, "width"); // number[] 142 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[]
|
/third_party/flutter/skia/samplecode/ |
D | SampleThinAA.cpp | 460 SkTArray<sk_sp<OffscreenShapeRenderer>> shapes) { in drawShapes() argument 463 for (int i = 0; i < shapes.count(); ++i) { in drawShapes() 464 this->drawShape(canvas, name, gridX, shapes[i].get(), i == 0); in drawShapes()
|
/third_party/skia/samplecode/ |
D | SampleThinAA.cpp | 464 SkTArray<sk_sp<OffscreenShapeRenderer>> shapes) { in drawShapes() argument 467 for (int i = 0; i < shapes.count(); ++i) { in drawShapes() 468 this->drawShape(canvas, name, gridX, shapes[i].get(), i == 0); in drawShapes()
|
/third_party/skia/tests/ |
D | GrStyledShapeTest.cpp | 1682 SkAutoTArray<GrStyledShape> shapes(cnt); in test_rrect() local 1689 shapes[index(inverted, dir, start, style, dash)] = in test_rrect() 1702 const GrStyledShape& exampleFillCase = shapes[index(false, kExamplesDir, kExamplesStart, kFill, in test_rrect() 1707 const GrStyledShape& exampleStrokeAndFillCase = shapes[index(false, kExamplesDir, in test_rrect() 1712 const GrStyledShape& exampleInvFillCase = shapes[index(true, kExamplesDir, in test_rrect() 1717 const GrStyledShape& exampleInvStrokeAndFillCase = shapes[index(true, kExamplesDir, in test_rrect() 1723 const GrStyledShape& exampleStrokeCase = shapes[index(false, kExamplesDir, kExamplesStart, in test_rrect() 1728 const GrStyledShape& exampleInvStrokeCase = shapes[index(true, kExamplesDir, kExamplesStart, in test_rrect() 1733 const GrStyledShape& exampleHairlineCase = shapes[index(false, kExamplesDir, kExamplesStart, in test_rrect() 1738 const GrStyledShape& exampleInvHairlineCase = shapes[index(true, kExamplesDir, kExamplesStart, in test_rrect() [all …]
|
/third_party/flutter/skia/tests/ |
D | GrShapeTest.cpp | 1661 SkAutoTArray<GrShape> shapes(cnt); in test_rrect() local 1668 shapes[index(inverted, dir, start, style, dash)] = in test_rrect() 1681 const GrShape& exampleFillCase = shapes[index(false, kExamplesDir, kExamplesStart, kFill, in test_rrect() 1686 const GrShape& exampleStrokeAndFillCase = shapes[index(false, kExamplesDir, kExamplesStart, in test_rrect() 1691 const GrShape& exampleInvFillCase = shapes[index(true, kExamplesDir, kExamplesStart, kFill, in test_rrect() 1696 const GrShape& exampleInvStrokeAndFillCase = shapes[index(true, kExamplesDir, kExamplesStart, in test_rrect() 1701 const GrShape& exampleStrokeCase = shapes[index(false, kExamplesDir, kExamplesStart, kStroke, in test_rrect() 1706 const GrShape& exampleInvStrokeCase = shapes[index(true, kExamplesDir, kExamplesStart, kStroke, in test_rrect() 1711 const GrShape& exampleHairlineCase = shapes[index(false, kExamplesDir, kExamplesStart, in test_rrect() 1716 const GrShape& exampleInvHairlineCase = shapes[index(true, kExamplesDir, kExamplesStart, in test_rrect() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | keyofAndIndexedAccess.js | 137 function f30(shapes: Shape[]) { 138 let names = pluck(shapes, "name"); // string[] 139 let widths = pluck(shapes, "width"); // number[] 140 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] 754 function f30(shapes) { argument 755 var names = pluck(shapes, "name"); // string[] 756 var widths = pluck(shapes, "width"); // number[] 757 var nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] 1182 declare function f30(shapes: Shape[]): void;
|
D | keyofAndIndexedAccess.types | 458 function f30(shapes: Shape[]) { 459 >f30 : (shapes: Shape[]) => void 460 >shapes : Shape[] 462 let names = pluck(shapes, "name"); // string[] 464 >pluck(shapes, "name") : string[] 466 >shapes : Shape[] 469 let widths = pluck(shapes, "width"); // number[] 471 >pluck(shapes, "width") : number[] 473 >shapes : Shape[] 476 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] [all …]
|
/third_party/python/Doc/library/ |
D | turtle.rst | 33 Turtle can draw intricate shapes using programs that repeat simple 41 By combining together these and similar commands, intricate shapes and pictures 1055 or multiple shapes are filled depends on the operating system graphics, 1165 shape dictionary. Initially there are the following polygon shapes: "arrow", 1167 deal with shapes see Screen method :func:`register_shape`. 1217 of the shapes's outline. 1539 Compound shapes 1542 To use compound turtle shapes, which consist of several polygons of different 1574 Shape class *only* when using compound shapes like shown above! 1978 Return a list of names of all currently available turtle shapes. [all …]
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | range_slider_test.dart | 1026 …testWidgets('Range Slider uses the right theme colors for the right shapes for a default enabled s… 1049 …testWidgets('Range Slider uses the right theme colors for the right shapes when setting the active… 1075 …testWidgets('Range Slider uses the right theme colors for the right shapes when setting the inacti… 1100 …testWidgets('Range Slider uses the right theme colors for the right shapes with active and inactiv… 1131 …testWidgets('Range Slider uses the right theme colors for the right shapes for a discrete slider',… 1159 …testWidgets('Range Slider uses the right theme colors for the right shapes for a discrete slider w… 1198 …testWidgets('Range Slider uses the right theme colors for the right shapes for a default disabled … 1218 …testWidgets('Range Slider uses the right theme colors for the right shapes for a disabled slider w… 1244 …testWidgets('Range Slider uses the right theme colors for the right shapes when the value indicato…
|
/third_party/ffmpeg/libavfilter/dnn/ |
D | dnn_backend_openvino.c | 284 input_shapes.shapes[i].shape.dims[0] = ctx->options.batch_size; in init_model_ov() 498 input_shapes.shapes->shape.dims[2] = input_height; in get_output_ov() 499 input_shapes.shapes->shape.dims[3] = input_width; in get_output_ov()
|