Home
last modified time | relevance | path

Searched refs:bottomLeft (Results 1 – 25 of 55) sorted by relevance

123

/third_party/flutter/flutter/packages/flutter/test/painting/
Dborder_radius_test.dart17 expect(borderRadius.bottomLeft, const Radius.elliptical(5.0, 7.0));
25 expect(borderRadius.bottomLeft, const Radius.elliptical(3.0, 3.0));
36 expect(borderRadius.bottomLeft, radius2);
42 bottomLeft: radius2,
50 expect(borderRadius.bottomLeft, radius1);
56 bottomLeft: radius1,
64 expect(borderRadius.bottomLeft, Radius.zero);
72 expect(borderRadius.bottomLeft, Radius.zero);
78 bottomLeft: Radius.zero,
109 bottomLeft: radius2,
[all …]
Dgradient_test.dart36 end: Alignment.bottomLeft,
66 end: Alignment.bottomLeft,
181 end: Alignment.bottomLeft,
188 …'LinearGradient(topLeft, bottomLeft, [Color(0x33333333), Color(0x66666666)], null, TileMode.clamp)…
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dborder_radius.dart182 result.write('bottomLeft: $_bottomLeft');
287 bottomLeft: radius,
304 bottomLeft: bottom,
316 bottomLeft: left,
325 this.bottomLeft = Radius.zero,
345 final Radius bottomLeft;
348 Radius get _bottomLeft => bottomLeft;
374 bottomLeft: bottomLeft,
398 bottomLeft: bottomLeft - other.bottomLeft,
408 bottomLeft: bottomLeft + other.bottomLeft,
[all …]
/third_party/flutter/flutter/packages/flutter_localizations/test/
Dtext_test.dart78 Offset bottomLeft = tester.getBottomLeft(find.text('hello, world'));
83 expect(bottomLeft, const Offset(392.0, 315.3999996185303));
88 bottomLeft = tester.getBottomLeft(find.text('你好,世界'));
93 expect(bottomLeft, const Offset(392.0, 363.3999996185303));
164 Offset bottomLeft = tester.getBottomLeft(find.text('hello, world'));
170 expect(bottomLeft, const Offset(392.0, 315.19999980926514));
175 bottomLeft = tester.getBottomLeft(find.text('你好,世界'));
180 expect(bottomLeft, const Offset(392.0, 363.19999980926514));
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DTextureSubresourceTests.cpp163 RGBA8 bottomLeft = RGBA8::kRed; in TEST_P() local
165 EXPECT_TEXTURE_EQ(&bottomLeft, texture, {0, kSize / 2 - 1}, {1, 1}, 1); in TEST_P()
191 RGBA8 bottomLeft = RGBA8::kRed; in TEST_P() local
193 EXPECT_TEXTURE_EQ(&bottomLeft, texture, {0, kSize - 1, 1}, {1, 1}); in TEST_P()
/third_party/node/lib/internal/
Dcli_table.js26 bottomLeft: '└', property
80 result += `${tableChars.bottomLeft}${divider.join(tableChars.bottomMiddle)}` +
/third_party/node/deps/npm/node_modules/cli-boxes/
Dreadme.md26 "bottomLeft": "└",
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dink_splash.dart40 final double d3 = (position - bounds.bottomLeft(Offset.zero)).distance;
220 bottomLeft: _borderRadius.bottomLeft, bottomRight: _borderRadius.bottomRight,
Darc.dart179 bottomLeft,
192 _Diagonal(_CornerId.topRight, _CornerId.bottomLeft),
193 _Diagonal(_CornerId.bottomLeft, _CornerId.topRight),
270 case _CornerId.bottomLeft: return rect.bottomLeft;
Dink_highlight.dart122 bottomLeft: _borderRadius.bottomLeft, bottomRight: _borderRadius.bottomRight,
Dink_ripple.dart35 final double d2 = (size.topRight(Offset.zero) - size.bottomLeft(Offset.zero)).distance;
255 bottomLeft: _borderRadius.bottomLeft, bottomRight: _borderRadius.bottomRight,
Dinput_border.dart232 if (borderRadius.bottomLeft != Radius.zero || borderRadius.bottomRight != Radius.zero)
234 canvas.drawLine(rect.bottomLeft, rect.bottomRight, borderSide.toPaint());
302 && borderRadius.bottomLeft.x == borderRadius.bottomLeft.y
Dtab_indicator.dart96 canvas.drawLine(indicator.bottomLeft, indicator.bottomRight, paint);
/third_party/flutter/engine/flutter/testing/dart/
Dgeometry_test.dart220 bottomLeft: Radius.zero,
239 bottomLeft: Radius.zero,
258 bottomLeft: Radius.zero,
284 bottomLeft: Radius.zero,
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dfull_screen_dialog_demo.dart171 alignment: Alignment.bottomLeft,
190 alignment: Alignment.bottomLeft,
/third_party/flutter/flutter/packages/flutter/test/material/
Dmergeable_material_test.dart37 expect(borderRadius.bottomLeft, equals(Radius.zero));
40 expect(borderRadius.bottomLeft.x, greaterThan(0.0));
41 expect(borderRadius.bottomLeft.x, lessThan(cardRadius.x));
42 expect(borderRadius.bottomLeft.y, greaterThan(0.0));
43 expect(borderRadius.bottomLeft.y, lessThan(cardRadius.y));
49 expect(borderRadius.bottomLeft, equals(cardRadius));
/third_party/node/deps/npm/node_modules/boxen/
Dindex.js127 …const bottom = colorizeBorder(marginLeft + chars.bottomLeft + horizontal + chars.bottomRight + NL.…
Dreadme.md111 bottomLeft: '+',
/third_party/flutter/flutter/packages/flutter_driver/lib/src/common/
Dgeometry.dart18 bottomLeft,
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dplaceholder.dart28 ..addPolygon(<Offset>[rect.topRight, rect.bottomLeft], false)
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dlistener_deprecated_test.dart428 final Offset bottomLeft = tester.getBottomLeft(find.byKey(key));
430 expect(bottomLeft.dy - topLeft.dy, scaleFactor * localHeight);
446 await gesture.moveTo(bottomLeft + const Offset(1, -1));
452 await gesture.moveTo(bottomLeft + const Offset(1, 1));
Dbox_decoration_test.dart254 bottomLeft: Radius.zero,
261 bottomLeft: const Radius.circular(-10.0),
Dmouse_region_test.dart423 final Offset bottomLeft = tester.getBottomLeft(find.byKey(key));
425 expect(bottomLeft.dy - topLeft.dy, scaleFactor * localHeight);
442 await gesture.moveTo(bottomLeft + const Offset(1, -1));
448 await gesture.moveTo(bottomLeft + const Offset(1, 1));
/third_party/flutter/engine/flutter/lib/ui/
Dgeometry.dart538 /// See also [Rect.bottomLeft].
539 Offset bottomLeft(Offset origin) => Offset(origin.dx, origin.dy + height);
545 /// See also [Rect.bottomLeft].
818 /// See also [Size.bottomLeft].
819 Offset get bottomLeft => Offset(left, bottom);
823 /// See also [Size.bottomLeft].
1093 /// and topLeft, topRight, bottomRight, and bottomLeft radii.
1104 Radius bottomLeft = Radius.zero,
1114 blRadiusX: bottomLeft.x,
1115 blRadiusY: bottomLeft.y,
[all …]
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/
Dgeometry.dart557 /// See also [Rect.bottomLeft].
558 Offset bottomLeft(Offset origin) => Offset(origin.dx, origin.dy + height);
564 /// See also [Rect.bottomLeft].
851 /// See also [Size.bottomLeft].
852 Offset get bottomLeft => Offset(left, bottom);
856 /// See also [Size.bottomLeft].
1145 /// and topLeft, topRight, bottomRight, and bottomLeft radii.
1156 Radius bottomLeft = Radius.zero,
1166 blRadiusX: bottomLeft.x,
1167 blRadiusY: bottomLeft.y,
[all …]

123