Home
last modified time | relevance | path

Searched refs:bottom (Results 1 – 25 of 1731) sorted by relevance

12345678910>>...70

/third_party/cups-filters/filter/pdftopdf/
Dpptypes.cc78 std::swap(top,bottom); in rotate_move()
82 const float tmp=bottom; in rotate_move()
83 bottom=left; in rotate_move()
97 bottom=pheight-bottom; in rotate_move()
104 const float tmp0=bottom; in rotate_move()
105 bottom=left; in rotate_move()
118 top=pheight-bottom; in rotate_move()
119 bottom=pheight-tmp2; in rotate_move()
124 left=bottom; in rotate_move()
125 bottom=pwidth-right; in rotate_move()
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dbottom_sheet.dart23 /// A material design bottom sheet.
25 /// There are two kinds of bottom sheets in material design:
27 /// * _Persistent_. A persistent bottom sheet shows information that
28 /// supplements the primary content of the app. A persistent bottom sheet
30 /// Persistent bottom sheets can be created and displayed with the
34 /// * _Modal_. A modal bottom sheet is an alternative to a menu or a dialog and
35 /// prevents the user from interacting with the rest of the app. Modal bottom
40 /// create a persistent bottom sheet with [ScaffoldState.showBottomSheet] or
41 /// [Scaffold.bottomSheet], and a modal bottom sheet with [showModalBottomSheet].
46 /// non-modal "persistent" bottom sheets.
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dsliver_appbar_opacity.dart10 testWidgets('!pinned && !floating && !bottom ==> fade opactiy', (WidgetTester tester) async {
16 bottom: false,
29 testWidgets('!pinned && !floating && bottom ==> fade opactiy', (WidgetTester tester) async {
35 bottom: true,
48 testWidgets('!pinned && floating && !bottom ==> fade opactiy', (WidgetTester tester) async {
54 bottom: false,
67 testWidgets('!pinned && floating && bottom ==> fade opactiy', (WidgetTester tester) async {
73 bottom: true,
86 testWidgets('pinned && !floating && !bottom ==> 1.0 opacity', (WidgetTester tester) async {
92 bottom: false,
[all …]
/third_party/openh264/codec/common/x86/
Dexpand_picture.asm99 movdq%4 [%1], %3 ; top(bottom)_0
100 movdq%4 [%1+%2], %3 ; top(bottom)_1
102 movdq%4 [%1], %3 ; top(bottom)_2
103 movdq%4 [%1+%2], %3 ; top(bottom)_3
108 movdq%4 [%1], %3 ; top(bottom)_0
109 movdq%4 [%1+%2], %3 ; top(bottom)_1
111 movdq%4 [%1], %3 ; top(bottom)_2
112 movdq%4 [%1+%2], %3 ; top(bottom)_3
117 movdqa [%1], %3 ; top(bottom)_0
118 movdqa [%1+16], %3 ; top(bottom)_0
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dbox_border.dart71 /// The bottom side of this border.
72 BorderSide get bottom;
95 /// both of their lateral edges (the two sides that aren't the top and bottom)
124 bottom: BorderSide.lerp(a.bottom, b.bottom, t),
134 bottom: BorderSide.lerp(a.bottom, b.bottom, t),
144 bottom: BorderSide.lerp(a.bottom, b.bottom, t),
152 bottom: BorderSide.lerp(a.bottom, b.bottom, t),
240 /// A border of a box, comprised of four sides: top, right, bottom, left.
257 /// Border(bottom: BorderSide(color: Theme.of(context).dividerColor))
271 /// bottom: BorderSide(width: 1.0, color: Color(0xFFFF000000)),
[all …]
Dedge_insets.dart68 /// An [EdgeInsetsGeometry] with top and bottom, left and right, and start and end flipped.
279 /// top, right, and bottom. These values are not affected by the
282 /// _start_, top, _end_, and bottom, where start and end are resolved in terms
319 /// Creates insets from offsets from the left, top, right, and bottom.
320 const EdgeInsets.fromLTRB(this.left, this.top, this.right, this.bottom);
336 bottom = value;
352 this.bottom = 0.0,
371 bottom = vertical;
383 bottom = padding.bottom / devicePixelRatio;
406 /// The offset from the bottom.
[all …]
/third_party/flutter/skia/tools/lua/
Dskia.lua20 Sk.Rect = { left = 0, top = 0, right = 0, bottom = 0 }
27 rect = { left = l, top = t, right = r, bottom = b }
30 rect = { right = l, bottom = t }
44 return self.bottom - self.top
55 value = value * self.bottom
63 self.bottom = 0
70 self.bottom = b
79 self.bottom = self.bottom + dy
88 self.bottom = self.bottom - dy
/third_party/skia/docs/examples/
DChromeMDRefreshTab.cpp12 const float bottom = size.fHeight * scale; in GetBorderPath() local
16 path.moveTo(0, bottom - 1); in GetBorderPath()
20 bottom - 1 - scaled_endcap_radius); in GetBorderPath()
57 path.lineTo(right - scaled_endcap_radius + 1, bottom - 1 - scaled_endcap_radius); in GetBorderPath()
62 SkPathDirection::kCCW, right, bottom - 1); in GetBorderPath()
76 const float bottom = std::ceil(size.fHeight * scale); in GetInteriorPath() local
88 right_path.moveTo(right, bottom); in GetInteriorPath()
93 bottom - scaled_endcap_radius); in GetInteriorPath()
108 right_path.lineTo(0, bottom); in GetInteriorPath()
121 left_path.lineTo(scaled_endcap_radius, bottom - scaled_endcap_radius); in GetInteriorPath()
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dsafe_area.dart39 /// The [left], [top], [right], [bottom], and [minimum] arguments must not be
46 this.bottom = true,
53 assert(bottom != null),
66 /// Whether to avoid system intrusions on the bottom side of the screen.
67 final bool bottom;
100 if (data.padding.bottom == 0.0 && data.viewInsets.bottom != 0.0 && maintainBottomViewPadding)
101 padding = padding.copyWith(bottom: data.viewPadding.bottom);
108 bottom: math.max(bottom ? padding.bottom : 0.0, minimum.bottom),
115 removeBottom: bottom,
127 properties.add(FlagProperty('bottom', value: left, ifTrue: 'avoid bottom padding'));
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_fillborders.c38 int left, right, top, bottom; member
43 int left, right, top, bottom; member
95 for (y = s->borders[p].top; y < s->planeheight[p] - s->borders[p].bottom; y++) { in smear_borders8()
109 for (y = s->planeheight[p] - s->borders[p].bottom; y < s->planeheight[p]; y++) { in smear_borders8()
111 ptr + (s->planeheight[p] - s->borders[p].bottom - 1) * linesize, in smear_borders8()
125 for (y = s->borders[p].top; y < s->planeheight[p] - s->borders[p].bottom; y++) { in smear_borders16()
141 for (y = s->planeheight[p] - s->borders[p].bottom; y < s->planeheight[p]; y++) { in smear_borders16()
143 ptr + (s->planeheight[p] - s->borders[p].bottom - 1) * linesize, in smear_borders16()
157 for (y = s->borders[p].top; y < s->planeheight[p] - s->borders[p].bottom; y++) { in mirror_borders8()
174 for (y = 0; y < s->borders[p].bottom; y++) { in mirror_borders8()
[all …]
/third_party/typescript/tests/baselines/reference/
DtypeParameterDiamond3.types17 var bottom: Bottom;
18 >bottom : Bottom
25 middle = bottom;
26 >middle = bottom : Bottom
28 >bottom : Bottom
30 top = bottom;
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond2.types17 var bottom: Bottom;
18 >bottom : Bottom
25 middle = bottom;
26 >middle = bottom : Bottom
28 >bottom : Bottom
30 top = bottom;
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond4.types17 var bottom: Bottom;
18 >bottom : Bottom
25 middle = bottom;
26 >middle = bottom : Bottom
28 >bottom : Bottom
30 top = bottom;
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond1.types17 var bottom: Bottom;
18 >bottom : Bottom
25 middle = bottom;
26 >middle = bottom : Bottom
28 >bottom : Bottom
30 top = bottom;
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond2.symbols27 var bottom: Bottom;
28 >bottom : Symbol(bottom, Decl(typeParameterDiamond2.ts, 5, 15))
35 middle = bottom;
37 >bottom : Symbol(bottom, Decl(typeParameterDiamond2.ts, 5, 15))
39 top = bottom;
41 >bottom : Symbol(bottom, Decl(typeParameterDiamond2.ts, 5, 15))
DtypeParameterDiamond4.symbols28 var bottom: Bottom;
29 >bottom : Symbol(bottom, Decl(typeParameterDiamond4.ts, 5, 15))
36 middle = bottom;
38 >bottom : Symbol(bottom, Decl(typeParameterDiamond4.ts, 5, 15))
40 top = bottom;
42 >bottom : Symbol(bottom, Decl(typeParameterDiamond4.ts, 5, 15))
DtypeParameterDiamond1.symbols28 var bottom: Bottom;
29 >bottom : Symbol(bottom, Decl(typeParameterDiamond1.ts, 5, 15))
36 middle = bottom;
38 >bottom : Symbol(bottom, Decl(typeParameterDiamond1.ts, 5, 15))
40 top = bottom;
42 >bottom : Symbol(bottom, Decl(typeParameterDiamond1.ts, 5, 15))
DtypeParameterDiamond3.symbols27 var bottom: Bottom;
28 >bottom : Symbol(bottom, Decl(typeParameterDiamond3.ts, 5, 15))
35 middle = bottom;
37 >bottom : Symbol(bottom, Decl(typeParameterDiamond3.ts, 5, 15))
39 top = bottom;
41 >bottom : Symbol(bottom, Decl(typeParameterDiamond3.ts, 5, 15))
/third_party/flutter/flutter/packages/flutter/test/painting/
Dedge_insets_test.dart60 …expect(const EdgeInsetsDirectional.only(bottom: 963.25).resolve(TextDirection.ltr), const EdgeInse…
64 …expect(const EdgeInsetsDirectional.only(bottom: 963.25).resolve(TextDirection.rtl), const EdgeInse…
66 …(const EdgeInsetsDirectional.only(top: 1.0), isNot(const EdgeInsetsDirectional.only(bottom: 1.0)));
77 …expect(EdgeInsetsDirectional.only(top: $5, bottom: 7.0), EdgeInsetsDirectional.only(top: $5, botto…
78 expect(EdgeInsets.only(top: $5, bottom: 7.0), EdgeInsetsDirectional.only(top: $5, bottom: 7.0));
79 expect(EdgeInsetsDirectional.only(top: $5, bottom: 7.0), EdgeInsets.only(top: $5, bottom: 7.0));
80 expect(EdgeInsets.only(top: $5, bottom: 7.0), EdgeInsets.only(top: $5, bottom: 7.0));
98 … const EdgeInsets sourceEdgeInsets = EdgeInsets.only(left: 1.0, top: 2.0, bottom: 3.0, right: 4.0);
100 expect(copy, const EdgeInsets.only(left: 5.0, top: 6.0, bottom: 3.0, right: 4.0));
107 …etry.lerp(const EdgeInsetsDirectional.only(bottom: 10.0), null, 0.5), const EdgeInsetsDirectional.…
[all …]
/third_party/openssl/crypto/bn/
Dbn_rand.c23 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom, in bnrand() argument
31 if (top != BN_RAND_TOP_ANY || bottom != BN_RAND_BOTTOM_ANY) in bnrand()
87 if (bottom) /* set bottom bit if requested */ in bnrand()
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, in BN_rand_ex() argument
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx); in BN_rand_ex()
108 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand() argument
110 return bnrand(NORMAL, rnd, bits, top, bottom, 0, NULL); in BN_rand()
113 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_bntest_rand() argument
115 return bnrand(TESTING, rnd, bits, top, bottom, 0, NULL); in BN_bntest_rand()
119 int BN_priv_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, in BN_priv_rand_ex() argument
[all …]
/third_party/EGL/sdk/docs/man/html/
Dkhronos-man.css10 padding-bottom:12px;
16 margin-bottom: 3px;
18 padding-bottom: 0;
24 margin-bottom: 3px;
26 padding-bottom: 0;
32 margin-bottom: 3px;
34 padding-bottom: 0;
40 margin-bottom: 18px;
42 padding-bottom: 0;
78 padding-bottom: 10px;
[all …]
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/xhtml/
Dstyles-css.xsl12 padding-bottom:12px;
18 margin-bottom: 3px;
20 padding-bottom: 0;
26 margin-bottom: 3px;
28 padding-bottom: 0;
34 margin-bottom: 3px;
36 padding-bottom: 0;
42 margin-bottom: 18px;
44 padding-bottom: 0;
80 padding-bottom: 10px;
[all …]
/third_party/EGL/sdk/docs/man/xhtml/
Dstyles-css.xsl12 padding-bottom:12px;
18 margin-bottom: 3px;
20 padding-bottom: 0;
26 margin-bottom: 3px;
28 padding-bottom: 0;
34 margin-bottom: 3px;
36 padding-bottom: 0;
42 margin-bottom: 18px;
44 padding-bottom: 0;
80 padding-bottom: 10px;
[all …]
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/html/
Dkhronos-man.css10 padding-bottom:12px;
16 margin-bottom: 3px;
18 padding-bottom: 0;
24 margin-bottom: 3px;
26 padding-bottom: 0;
32 margin-bottom: 3px;
34 padding-bottom: 0;
40 margin-bottom: 18px;
42 padding-bottom: 0;
78 padding-bottom: 10px;
[all …]
/third_party/flutter/engine/flutter/testing/dart/
Dwindow_hooks_integration_test.dart81 oldPadding.bottom, // padding bottom
85 oldInsets.bottom, // inset bottom
89 oldSystemGestureInsets.bottom, // system gesture inset bottom
131 0.0, // padding bottom
135 0.0, // inset bottom
139 0.0, // system gesture inset bottom
355 40.0, // padding bottom
359 0.0, // inset bottom
363 0.0, // system gesture inset bottom
367 expect(window.viewInsets.bottom, 0.0);
[all …]

12345678910>>...70