Home
last modified time | relevance | path

Searched full:bottom (Results 1 – 25 of 5767) sorted by relevance

12345678910>>...231

/external/pdfium/core/fxcrt/
Dfx_coordinates.cpp32 if (top > bottom) in Normalize()
33 std::swap(top, bottom); in Normalize()
43 bottom = std::min(bottom, src_n.bottom); in Intersect()
44 if (left > right || top > bottom) { in Intersect()
45 left = top = right = bottom = 0; in Intersect()
51 top = rect.bottom; in CFX_FloatRect()
53 bottom = rect.top; in CFX_FloatRect()
77 if (bottom > top) in Normalize()
78 std::swap(top, bottom); in Normalize()
84 bottom = 0.0f; in Reset()
[all …]
Dfx_coordinates_unittest.cpp14 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
22 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
27 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
35 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
41 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
48 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
55 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
62 EXPECT_FLOAT_EQ(-8.0f, rect.bottom); in TEST()
71 EXPECT_FLOAT_EQ(0.0f, rect.bottom); in TEST()
78 EXPECT_FLOAT_EQ(-3.0f, rect.bottom); in TEST()
[all …]
/external/epid-sdk/doc/html/
Depidstyle.css14 padding-bottom: 1px;
16 margin-bottom: 0px;
17 border-bottom: 1px solid #0860A8;
21 border-bottom: 0 none;
29 margin-bottom: 0;
36 margin-bottom: 0;
59 margin-bottom: 5pt;
65 margin-bottom: 0;
77 margin-bottom: 10pt;
82 padding-bottom: 0;
[all …]
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_region.cc23 DesktopRegion::Row::Row(int32_t top, int32_t bottom) in Row() argument
24 : top(top), bottom(bottom) { in Row()
66 it1->second->bottom != it2->second->bottom || in Equals()
93 // we iterate over the rows until it reaches |rect.bottom()|. in AddRect()
99 while (top < rect.bottom()) { in AddRect()
103 int32_t bottom = rect.bottom(); in AddRect() local
104 if (row != rows_.end() && row->second->top < bottom) in AddRect()
105 bottom = row->second->top; in AddRect()
107 row, Rows::value_type(bottom, new Row(top, bottom))); in AddRect()
112 assert(top <= row->second->bottom); in AddRect()
[all …]
/external/libnl/doc/stylesheets/
Dvolnitsky.css27 border-bottom: 1px dotted #999999;
32 border-bottom: 1px solid #6D4100;
36 a { color: #666688; text-decoration: none; border-bottom: 1px dotted #666688; }
37 a:visited { color: #615FA0; border-bottom: 1px dotted #615FA0; }
38 a:hover { color: #6D4100; border-bottom: 1px solid #6D4100; }
52 margin-bottom: 0.5em;
57 h1, h2, h3 { border-bottom: 2px solid #ccd; }
72 margin-bottom: 0.5em;
99 padding-bottom: 0.5em;
104 padding-bottom: 0.5em;
[all …]
Dflask.css53 margin-bottom: 0.5em;
58 border-bottom: 2px solid silver;
83 margin-bottom: 0.5em;
115 padding-bottom: 0.5em;
119 padding-bottom: 0.5em;
124 margin-bottom: 1.5em;
130 margin-bottom: 1.5em;
134 margin-bottom: 2.0em;
149 margin-bottom: 0.5em;
229 margin-bottom: 0.8em;
[all …]
Dxhtml11.css38 margin-bottom: 0.5em;
43 border-bottom: 2px solid silver;
66 margin-bottom: 0.5em;
99 padding-bottom: 0.5em;
103 padding-bottom: 0.5em;
108 margin-bottom: 1.5em;
114 margin-bottom: 1.5em;
118 margin-bottom: 2.5em;
132 margin-bottom: 0.5em;
209 margin-bottom: 0.8em;
[all …]
Dasciidoc.css51 margin-bottom: 0.5em;
56 border-bottom: 2px solid silver;
81 margin-bottom: 0.5em;
113 padding-bottom: 0.5em;
117 padding-bottom: 0.5em;
122 margin-bottom: 1.5em;
128 margin-bottom: 1.5em;
132 margin-bottom: 2.0em;
148 margin-bottom: 0.5em;
229 margin-bottom: 0.8em;
[all …]
/external/tinyxml/docs/
Ddoxygen.css90 margin-bottom: 4px;
96 padding-bottom: 4px;
98 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top…
110 margin-bottom: 6px;
126 padding-bottom : 2px;
130 margin-bottom : 2px;
139 padding-bottom : 2px;
143 margin-bottom : 2px;
173 border-bottom: 1px none #E0E0E0;
184 border-bottom: 1px none #E0E0E0;
[all …]
/external/swiftshader/third_party/LLVM/docs/
Ddoxygen.css93 margin-bottom: 4px;
99 padding-bottom: 4px;
101 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top…
113 margin-bottom: 6px;
129 padding-bottom : 2px;
133 margin-bottom : 2px;
142 padding-bottom : 2px;
146 margin-bottom : 2px;
176 border-bottom: 1px none #E0E0E0;
187 border-bottom: 1px none #E0E0E0;
[all …]
/external/libchrome/ui/gfx/geometry/
Drect.cc28 size_(std::abs(r.right - r.left), std::abs(r.bottom - r.top)) { in Rect()
42 r.bottom = bottom(); in ToRECT()
102 void Rect::SetByBounds(int left, int top, int right, int bottom) { in SetByBounds() argument
106 SaturatedClampRange(top, bottom, &y, &height); in SetByBounds()
112 Inset(insets.left(), insets.top(), insets.right(), insets.bottom()); in Inset()
115 void Rect::Inset(int left, int top, int right, int bottom) { in Inset() argument
120 set_height(base::ClampSub(height(), base::ClampAdd(top, bottom))); in Inset()
144 bottom() - inner.bottom(), in InsetsFrom()
162 (point_y < bottom()); in Contains()
167 rect.bottom() <= bottom()); in Contains()
[all …]
Drect_f.cc46 Inset(insets.left(), insets.top(), insets.right(), insets.bottom()); in Inset()
49 void RectF::Inset(float left, float top, float right, float bottom) { in Inset() argument
52 set_height(std::max(height() - top - bottom, 0.0f)); in Inset()
70 bottom() - inner.bottom(), in InsetsFrom()
85 point_y < bottom(); in Contains()
90 rect.bottom() <= bottom(); in Contains()
95 rect.right() > x() && rect.y() < bottom() && rect.bottom() > y(); in Intersects()
107 float rb = std::min(bottom(), rect.bottom()); in Intersect()
128 float rb = std::max(bottom(), rect.bottom()); in Union()
144 float rb = bottom(); in Subtract()
[all …]
/external/ImageMagick/www/api/MagickWand/
Ddoxygen.css90 margin-bottom: 4px;
96 padding-bottom: 4px;
98 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top…
103 margin-bottom: 6px;
119 padding-bottom : 2px;
123 margin-bottom : 2px;
132 padding-bottom : 2px;
136 margin-bottom : 2px;
159 border-bottom: 1px none #E0E0E0;
170 border-bottom: 1px none #E0E0E0;
[all …]
/external/ImageMagick/www/api/MagickCore/
Ddoxygen.css90 margin-bottom: 4px;
96 padding-bottom: 4px;
98 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top…
103 margin-bottom: 6px;
119 padding-bottom : 2px;
123 margin-bottom : 2px;
132 padding-bottom : 2px;
136 margin-bottom : 2px;
159 border-bottom: 1px none #E0E0E0;
170 border-bottom: 1px none #E0E0E0;
[all …]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
DFixedTableModelTest.java88 assertEquals(500f, cellRect.bottom); in testColumnMajor()
95 assertEquals(500f, cellRect.bottom); in testColumnMajor()
102 assertEquals(500f, cellRect.bottom); in testColumnMajor()
109 assertEquals(1000f, cellRect.bottom); in testColumnMajor()
116 assertEquals(1000f, cellRect.bottom); in testColumnMajor()
127 assertEquals(500f, cellRect.bottom); in testColumnMajor()
134 assertEquals(500f, cellRect.bottom); in testColumnMajor()
141 assertEquals(500f, cellRect.bottom); in testColumnMajor()
148 assertEquals(1000f, cellRect.bottom); in testColumnMajor()
155 assertEquals(1000f, cellRect.bottom); in testColumnMajor()
[all …]
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
DViESurfaceRenderer.java57 dstRect.bottom = (int)(dstRect.top + dstBottomScale * dstHeight); in changeDestRect()
71 " srcRect.bottom:" + srcRect.bottom + in surfaceChanged()
75 " dstRect.bottom:" + dstRect.bottom); in surfaceChanged()
83 changeDestRect(dst.right - dst.left, dst.bottom - dst.top); in surfaceCreated()
88 " dst.bottom:" + dst.bottom + in surfaceCreated()
92 " srcRect.bottom:" + srcRect.bottom + in surfaceCreated()
96 " dstRect.bottom:" + dstRect.bottom); in surfaceCreated()
121 srcRect.bottom = height; in CreateBitmap()
136 float right, float bottom) { in SetCoordinates() argument
138 right + "," + bottom); in SetCoordinates()
[all …]
/external/grpc-grpc/third_party/nanopb/docs/
Dlsr.css93 margin-bottom: 0em;
98 border-bottom: 0px;
110 margin-bottom: 0.5em;
111 border-bottom: 2px solid #aaa;
116 margin-bottom: 0.5em;
117 border-bottom: 1px solid #aaa;
122 margin-bottom: 0.5em;
128 margin-bottom: 0.5em;
134 margin-bottom: 0.5em;
140 margin-bottom: 0.5em;
[all …]
/external/nanopb-c/docs/
Dlsr.css93 margin-bottom: 0em;
98 border-bottom: 0px;
110 margin-bottom: 0.5em;
111 border-bottom: 2px solid #aaa;
116 margin-bottom: 0.5em;
117 border-bottom: 1px solid #aaa;
122 margin-bottom: 0.5em;
128 margin-bottom: 0.5em;
134 margin-bottom: 0.5em;
140 margin-bottom: 0.5em;
[all …]
/external/ImageMagick/www/Magick++/
DEnumerations.html15 …<p align="left"><img src="right_triangle.png" name="Graphic1" alt="&gt;" align="bottom" width="15"…
21 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#ChannelType">ChannelType</a>
23 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#ClassType">ClassType</a>
25 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#ColorspaceType">ColorspaceType</a>
27 …<li><p style="margin-bottom: 0in"><a href="Enumerations.html#CompositeOperator">CompositeOperator<…
29 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#CompressionType">CompressionType</a>
31 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#DecorationType">DecorationType</a>
33 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#FillRule">FillRule</a>
35 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#FilterTypes">FilterTypes</a>
37 <li><p style="margin-bottom: 0in"><a href="Enumerations.html#GravityType">GravityType</a>
[all …]
/external/google-styleguide/include/
Dstyleguide.css20 margin-bottom: 1em;
31 margin-bottom:.75em;
103 padding-bottom: 1em;
112 padding-bottom: 1em;
196 margin-bottom: 1em;
201 margin-bottom: 1em;
206 margin-bottom: 1em;
213 margin-bottom: 1em;
218 margin-bottom: 1em;
225 margin-bottom: 1em;
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
DSelectionArea.java24 * If the orientation is flipped one way, swap the bottom and top or
29 private int bottom; field in SelectionArea
41 top = left = bottom = right = 0; in reset()
75 setBottom(bottom - 1); in decrementRow()
82 setBottom(bottom + 1); in incrementRow()
93 this.top = bottom = checkBounds(top, maxRows); in setTop()
97 return Math.min(top, bottom); in getTop()
100 private void setBottom(int bottom) { in setBottom() argument
101 this.bottom = checkBounds(bottom, maxRows); in setBottom()
105 return Math.max(top, bottom); in getBottom()
[all …]
/external/pdfium/public/
Dfpdf_transformpage.h24 * @param[in] bottom - The bottom of the rectangle.
31 float bottom,
39 * @param[in] bottom - The bottom of the rectangle.
46 float bottom,
54 * @param[in] bottom - Pointer to a double value receiving the bottom of the
64 float* bottom,
72 * @param[in] bottom - Pointer to a double value receiving the bottom of the
82 float* bottom,
130 * @param[in] bottom - The bottom of the clip box.
136 float bottom,
/external/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
/external/skqp/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
/external/autotest/client/site_tests/firmware_TouchMTB/
Dtest_conf.py335 GV.BL: ('bottom left corner',),
336 GV.BR: ('bottom right corner',),
338 GV.BS: ('bottom side',),
374 GV.BLTR: ('bottom left to top right',),
427 GV.TB: ('vertical', 'from top to bottom',),
428 GV.BT: ('vertical', 'from bottom to top',),
429 GV.BLTR: ('diagonal', 'from bottom left to top right',),
430 GV.TRBL: ('diagonal', 'from top right to bottom left',),
458 GV.CB: ('vertical', 'from the center off bottom edge',),
483 GV.TB: ('vertical', 'from top to bottom',),
[all …]

12345678910>>...231