Home
last modified time | relevance | path

Searched refs:bottom_ (Results 1 – 10 of 10) sorted by relevance

/external/libchrome/ui/gfx/geometry/
Dinsets_f.h17 constexpr InsetsF() : top_(0.f), left_(0.f), bottom_(0.f), right_(0.f) {} in InsetsF()
19 : top_(all), left_(all), bottom_(all), right_(all) {} in InsetsF()
23 bottom_(vertical), in InsetsF()
26 : top_(top), left_(left), bottom_(bottom), right_(right) {} in InsetsF()
30 constexpr float bottom() const { return bottom_; } in bottom()
39 constexpr float height() const { return top_ + bottom_; } in height()
47 bottom_ = bottom; in Set()
53 bottom_ == insets.bottom_ && right_ == insets.right_;
63 bottom_ += insets.bottom_;
70 bottom_ -= insets.bottom_;
[all …]
Dinsets.h26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {} in Insets()
28 : top_(all), left_(all), bottom_(all), right_(all) {} in Insets()
32 bottom_(vertical), in Insets()
35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets()
39 constexpr int bottom() const { return bottom_; } in bottom()
48 constexpr int height() const { return top_ + bottom_; } in height()
56 bottom_ = bottom; in Set()
62 bottom_ == insets.bottom_ && right_ == insets.right_;
72 bottom_ += insets.bottom_;
79 bottom_ -= insets.bottom_;
[all …]
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dgeom.h92 bottom_(0) {} in BoundingBox()
98 bottom_(bounding_box.bottom_) { in BoundingBox()
100 SCHECK(top_ < bottom_, "Bounds out of whack! %.2f vs %.2f!", top_, bottom_); in BoundingBox()
110 bottom_(bottom) { in BoundingBox()
112 SCHECK(top_ < bottom_, "Bounds out of whack! %.2f vs %.2f!", top_, bottom_); in BoundingBox()
119 bottom_(MAX(point1.y, point2.y)) {} in BoundingBox()
125 bounds_array[3] = bottom_; in CopyToArray()
133 return bottom_ - top_; in GetHeight()
148 (top_ + bottom_) / 2.0f); in GetCenter()
165 const float new_bottom = MIN(this->bottom_, that.bottom_); in Intersect()
[all …]
Dgl_utils.h29 bounding_box.left_, bounding_box.bottom_, in DrawBox()
34 bounding_box.right_, bounding_box.bottom_, in DrawBox()
35 bounding_box.right_, bounding_box.bottom_, in DrawBox()
36 bounding_box.left_, bounding_box.bottom_ in DrawBox()
Dtracked_object.h108 temp_box.bottom_ += kBufferSize; in Draw()
115 temp_box.bottom_ += -2.0f * kBufferSize; in Draw()
Dintegral_image.h152 bounding_box.right_, bounding_box.bottom_); in GetCode()
Dobject_tracker.cc458 float y3 = box.bottom_; in AddQuadrants()
/external/webrtc/modules/desktop_capture/
Ddesktop_geometry.h104 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {} in DesktopRect()
109 int32_t bottom() const { return bottom_; } in bottom()
111 int32_t height() const { return bottom_ - top_; } in height()
114 void set_height(int32_t height) { bottom_ = top_ + height; } in set_height()
119 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; } in is_empty()
123 right_ == other.right_ && bottom_ == other.bottom_; in equals()
159 : left_(left), top_(top), right_(right), bottom_(bottom) {} in DesktopRect()
164 int32_t bottom_; variable
Ddesktop_geometry.cc32 bottom_ = std::min(bottom(), rect.bottom()); in IntersectWith()
37 bottom_ = 0; in IntersectWith()
54 bottom_ = std::max(bottom(), rect.bottom()); in UnionWith()
61 bottom_ += dy; in Translate()
71 bottom_ += bottom_offset; in Extend()
76 bottom_ += static_cast<int>(std::round(height() * (vertical - 1))); in Scale()
/external/deqp/framework/referencerenderer/
DrrRenderState.hpp228 WindowRectangle (int left_, int bottom_, int width_, int height_) in WindowRectangle()
230 , bottom (bottom_) in WindowRectangle()