/external/pdfium/core/fxcrt/ |
D | fx_coordinates.cpp | 32 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 …]
|
D | fx_coordinates_unittest.cpp | 14 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/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_region.cc | 23 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() 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() 119 if (rect.bottom() < row->second->bottom) { in AddRect() [all …]
|
/external/epid-sdk/doc/html/ |
D | epidstyle.css | 14 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/libchrome/ui/gfx/geometry/ |
D | rect.cc | 28 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 …]
|
D | rect_f.cc | 46 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/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/ |
D | FixedTableModelTest.java | 88 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/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/ |
D | SelectionArea.java | 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() 171 if (y != bottom) in copyFrom() [all …]
|
/external/skia/tools/lua/ |
D | skia.lua | 20 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/ |
D | skia.lua | 20 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/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/ |
D | MockRectF.java | 43 it.bottom = rhs.bottom; in $init() 47 public void $init(float left, float top, float right, float bottom) { in $init() argument 51 it.bottom = bottom; in $init() 65 it.bottom = it.bottom + dy; in offset() 72 it.bottom = top + height(); in offsetTo() 82 return it.bottom - it.top; in height()
|
/external/grpc-grpc/third_party/nanopb/docs/ |
D | lsr.css | 93 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/ |
D | lsr.css | 93 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/libnl/doc/stylesheets/ |
D | volnitsky.css | 27 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 …]
|
D | flask.css | 53 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 …]
|
/external/tinyxml/docs/ |
D | doxygen.css | 90 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/pdfium/core/fpdfdoc/ |
D | cpvt_floatrect.h | 14 CPVT_FloatRect() { left = top = right = bottom = 0.0f; } in CPVT_FloatRect() 23 bottom = other_bottom; in CPVT_FloatRect() 30 bottom = rect.bottom; in CPVT_FloatRect() 34 if (top > bottom) in Height() 35 return top - bottom; in Height() 36 return bottom - top; in Height()
|
/external/tcpdump/tests/ |
D | bgp-aigp-oobr-nossl.out | 22 RD: 18826:610 (= 0.0.2.98), 172.17.33.32/28, label:1026 (bottom) 65 RD: 18826:640 (= 0.0.2.128), 172.17.33.64/28, label:1028 (bottom) 66 RD: 18826:640 (= 0.0.2.128), 172.17.33.80/28, label:1028 (bottom) 67 RD: 18826:640 (= 0.0.2.128), 173.17.34.0/28, label:1028 (bottom) 68 RD: 18826:640 (= 0.0.2.128), 172.17.34.16/28, label:1028 (bottom) 110 RD: 18826:21034 (= 0.0.82.42), 172.17.30.192/28, label:377856 (bottom) 133 RD: 18826:90 (= 0.0.0.90), 172.17.30.240/28, label:1063 (bottom) 134 RD: 18826:90 (= 0.0.0.90), 172.17.30.0/26, label:1061 (bottom) 135 RD: 18826:90 (= 0.0.0.90), 172.17.21.0/24, label:1059 (bottom) 136 RD: 18826:90 (= 0.0.0.90), 172.17.20.0/24, label:1058 (bottom) [all …]
|
D | bgp-aigp-oobr-ssl.out | 22 RD: 18826:610 (= 0.0.2.98), 172.17.33.32/28, label:1026 (bottom) 65 RD: 18826:640 (= 0.0.2.128), 172.17.33.64/28, label:1028 (bottom) 66 RD: 18826:640 (= 0.0.2.128), 172.17.33.80/28, label:1028 (bottom) 67 RD: 18826:640 (= 0.0.2.128), 173.17.34.0/28, label:1028 (bottom) 68 RD: 18826:640 (= 0.0.2.128), 172.17.34.16/28, label:1028 (bottom) 110 RD: 18826:21034 (= 0.0.82.42), 172.17.30.192/28, label:377856 (bottom) 133 RD: 18826:90 (= 0.0.0.90), 172.17.30.240/28, label:1063 (bottom) 134 RD: 18826:90 (= 0.0.0.90), 172.17.30.0/26, label:1061 (bottom) 135 RD: 18826:90 (= 0.0.0.90), 172.17.21.0/24, label:1059 (bottom) 136 RD: 18826:90 (= 0.0.0.90), 172.17.20.0/24, label:1058 (bottom) [all …]
|
/external/google-styleguide/include/ |
D | styleguide.css | 20 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/webrtc/webrtc/modules/video_render/windows/ |
D | video_render_windows_impl.cc | 93 const float bottom) in AddIncomingRenderStream() argument 104 top, right, bottom); in AddIncomingRenderStream() 131 float& bottom) const in GetIncomingRenderStreamProperties() 138 bottom = 0; in GetIncomingRenderStreamProperties() 147 top, right, bottom); in GetIncomingRenderStreamProperties() 241 const float bottom) in SetStreamCropping() argument 251 bottom); in SetStreamCropping() 262 const float bottom) in ConfigureRenderer() argument 272 top, right, bottom); in ConfigureRenderer() 302 const float bottom) in SetText() argument [all …]
|
/external/ImageMagick/www/api/MagickWand/ |
D | doxygen.css | 90 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/ |
D | doxygen.css | 90 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/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/ |
D | dataurl-realdata-doublequotes.css | 17 border-bottom-right-radius:0; 18 border-bottom-left-radius:0; 20 -webkit-border-bottom-right-radius:0; 21 -webkit-border-bottom-left-radius:0; 29 border-bottom-right-radius:3px; 30 border-bottom-left-radius:3px; 33 -webkit-border-bottom-right-radius:3px; 34 -webkit-border-bottom-left-radius:3px; 58 border-bottom-left-radius: 3px; 61 -webkit-border-bottom-left-radius: 3px; [all …]
|
D | dataurl-realdata-noquotes.css.min | 1 …bottom-right-radius:0;border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-webkit-bor…
|