Home
last modified time | relevance | path

Searched refs:sides (Results 1 – 25 of 175) sorted by relevance

1234567

/third_party/skia/docs/examples/
DPath_incReserve.cpp7 auto addPoly = [](int sides, SkScalar size, SkPath* path) -> void { in draw() argument
9 for (int i = 1; i < sides; i++) { in draw()
10 SkScalar rad = SK_ScalarPI * 2 * i / sides; in draw()
17 for (int sides = 3; sides < 10; ++sides) { in draw() local
18 addPoly(sides, sides, &path); in draw()
/third_party/flutter/skia/docs/examples/
DPath_incReserve.cpp7 auto addPoly = [](int sides, SkScalar size, SkPath* path) -> void { in draw() argument
9 for (int i = 1; i < sides; i++) { in draw()
10 SkScalar rad = SK_ScalarPI * 2 * i / sides; in draw()
17 for (int sides = 3; sides < 10; ++sides) { in draw() local
18 addPoly(sides, sides, &path); in draw()
/third_party/gstreamer/gstplugins_bad/gst/geometrictransform/
Dgstkaleidoscope.c128 if (s != kaleidoscope->sides) { in gst_kaleidoscope_set_property()
129 kaleidoscope->sides = s; in gst_kaleidoscope_set_property()
156 g_value_set_int (value, kaleidoscope->sides); in gst_kaleidoscope_get_property()
179 theta = gst_gm_triangle (theta / G_PI * kaleidoscope->sides * 0.5); in kaleidoscope_map()
243 filter->sides = DEFAULT_SIDES; in gst_kaleidoscope_init()
Dgstkaleidoscope.h75 gint sides; member
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dtable_border.dart10 /// This is like [Border], with the addition of two sides: the inner horizontal
13 /// The sides are represented by [BorderSide] objects.
18 /// All the sides of the border default to [BorderSide.none].
28 /// A uniform border with all sides the same color and width.
30 /// The sides default to black solid borders, one logical pixel wide.
40 /// Creates a border for a table where all the interior sides use the same
41 /// styling and all the exterior sides use the same styling.
68 /// The horizontal interior sides of this border.
71 /// The vertical interior sides of this border.
74 /// The widths of the sides of this border represented as an [EdgeInsets].
[all …]
/third_party/flutter/skia/src/pathops/
DSkOpCubicHull.cpp85 int sides = side(rotPath[side1].fY - rotPath[yMin].fY); in convexHull() local
86 sides ^= side(rotPath[side2].fY - rotPath[yMin].fY); in convexHull()
87 if (sides == 2) { // '2' means one remaining point <0, one >0 in convexHull()
113 } else if (sides == 0) { // '0' means both to one side or the other in convexHull()
/third_party/skia/src/pathops/
DSkOpCubicHull.cpp85 int sides = side(rotPath[side1].fY - rotPath[yMin].fY); in convexHull() local
86 sides ^= side(rotPath[side2].fY - rotPath[yMin].fY); in convexHull()
87 if (sides == 2) { // '2' means one remaining point <0, one >0 in convexHull()
113 } else if (sides == 0) { // '0' means both to one side or the other in convexHull()
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dbox_border.dart49 /// specifying the sides.
68 /// [isUniform] is true, then this is the same style as all the other sides.
74 /// Whether all four sides of the border are identical. Uniform borders are
94 /// objects. If both objects are different types but both have sides on one or
95 /// both of their lateral edges (the two sides that aren't the top and bottom)
96 /// other than [BorderSide.none], then the sides are interpolated by reducing
102 /// instead [add] the two sets of sides and interpolate them simultaneously.
138 // we speed up the horizontal sides' transitions and switch from
240 /// A border of a box, comprised of four sides: top, right, bottom, left.
242 /// The sides are represented by [BorderSide] objects.
[all …]
Dbeveled_rectangle_border.dart14 /// The line segments that connect the rectangle's four sides will
17 /// exceed the sides' half widths/heights the resulting shape is
18 /// diamond made by connecting the centers of the sides.
Dborders.dart55 /// * [Border], which uses [BorderSide] objects to represent its sides.
57 /// * [TableBorder], which is similar to [Border] but has two more sides
78 /// sides.
80 /// If one of the sides is zero-width with [BorderStyle.none], then the other
81 /// side is return as-is. If both of the sides are zero-width with
171 /// Not all borders use this method to paint their border sides. For example,
173 /// border sides as filled shapes rather than using a stroke.
193 /// Two sides can be merged if one or both are zero-width with
207 /// Linearly interpolate between two border sides.
293 /// The widths of the sides of this border represented as an [EdgeInsets].
[all …]
Dcontinuous_rectangle_border.dart13 /// sides and the rounded corners.
30 /// however its straight sides change into a rounded corner with a circular
Dpaint_utilities.dart14 /// If `zigs` is 1, then this will draw two sides of a triangle from `start` to
/third_party/ffmpeg/libavcodec/x86/
Dmpegvideoencdsp_init.c104 int w, int h, int sides) in draw_edges_mmx() argument
174 if (sides & EDGE_TOP) { in draw_edges_mmx()
194 if (sides & EDGE_BOTTOM) { in draw_edges_mmx()
/third_party/typescript/src/services/codefixes/
DaddMissingAwait.ts192 let sides: Identifier[] | undefined;
201 (sides || (sides = [])).push(side);
204 return sides && { identifiers: sides, isCompleteFix };
/third_party/ffmpeg/libavcodec/
Dmpegvideoencdsp.c120 int w, int h, int sides) in draw_edges_8_c() argument
135 if (sides & EDGE_TOP) in draw_edges_8_c()
139 if (sides & EDGE_BOTTOM) in draw_edges_8_c()
Dmpegvideoencdsp.h44 int w, int h, int sides);
/third_party/node/deps/npm/node_modules/wide-align/
DREADME.md30 Returns *str* with spaces added to both sides such that that it is *length*
47 both sides and adding left alignment.
/third_party/node/deps/npm/node_modules/boxen/
Dindex.js33 const sides = [ variable
51 sides.forEach(key => {
/third_party/libwebsockets/READMEs/
DREADME.tls-sessions.md9 TLS specifies logical "sessions" that get "established" on both sides when the
26 be skipped, and a connection-specific AES key agreed at both sides just by
29 the first is still valid and available at both sides.
/third_party/PyYAML/tests/data/
Dconstruct-seq.data3 - Mercury # Rotates - no light/dark sides.
/third_party/flutter/skia/third_party/externals/opencl-lib/3-0/include/GL/
Dglut.h527 extern void APIENTRY glutWireTorus(GLdouble innerRadius, GLdouble outerRadius, GLint sides, GLint r…
528 extern void APIENTRY glutSolidTorus(GLdouble innerRadius, GLdouble outerRadius, GLint sides, GLint …
/third_party/flutter/flutter/packages/flutter/test/painting/
Dbeveled_rectangle_border_test.dart36 // inset by 4 on all sides.
/third_party/flutter/engine/flutter/testing/scenario_app/
DREADME.md13 a continuously animating colored square that bounces off the sides of the
/third_party/node/doc/api/
Dassert.md313 description: NaN is now treated as being identical in case both sides are
365 both sides are `NaN`.
373 * Recursion stops when both sides differ or both sides encounter a circular
488 * Recursion stops when both sides differ or both sides encounter a circular
767 description: NaN is now treated as being identical in case both sides are
785 and treated as being identical in case both sides are `NaN`.
994 description: NaN is now treated as being identical in case both sides are
1134 description: NaN is now treated as being identical in case both sides are
1152 sides are `NaN`.
/third_party/flutter/engine/flutter/testing/scenario_app/lib/src/
Danimated_color_square.dart10 /// A square that animates it color and bounces off the sides of the

1234567