Searched defs:bottom_ (Results 1 - 6 of 6) sorted by relevance

/external/libmojo/ui/gfx/geometry/
H A Dinsets_f.h17 constexpr InsetsF() : top_(0.f), left_(0.f), bottom_(0.f), right_(0.f) {}
19 : top_(all), left_(all), bottom_(all), right_(all) {}
23 bottom_(vertical),
26 : top_(top), left_(left), bottom_(bottom), right_(right) {}
30 constexpr float bottom() const { return bottom_; }
39 constexpr float height() const { return top_ + bottom_; }
47 bottom_ = bottom;
53 bottom_ == insets.bottom_ && right_ == insets.right_;
63 bottom_
84 float bottom_; member in class:gfx::InsetsF
[all...]
H A Dinsets.h26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {}
28 : top_(all), left_(all), bottom_(all), right_(all) {}
32 bottom_(vertical),
35 : top_(top), left_(left), bottom_(bottom), right_(right) {}
39 constexpr int bottom() const { return bottom_; }
48 constexpr int height() const { return top_ + bottom_; }
56 bottom_ = bottom;
62 bottom_ == insets.bottom_ && right_ == insets.right_;
72 bottom_
114 int bottom_; member in class:gfx::Insets
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
104 int32_t bottom() const { return bottom_; }
106 int32_t height() const { return bottom_ - top_; }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
115 right_ == other.right_ && bottom_ == other.bottom_;
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
139 int32_t bottom_; member in class:webrtc::DesktopRect
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
H A Dgeom.h92 bottom_(0) {}
98 bottom_(bounding_box.bottom_) {
100 SCHECK(top_ < bottom_, "Bounds out of whack! %.2f vs %.2f!", top_, bottom_);
110 bottom_(bottom) {
112 SCHECK(top_ < bottom_, "Bounds out of whack! %.2f vs %.2f!", top_, bottom_);
119 bottom_(MAX(point1.y, point2.y)) {}
125 bounds_array[3] = bottom_;
247 float bottom_; member in class:tf_tracking::BoundingBox
[all...]
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp228 WindowRectangle (int left_, int bottom_, int width_, int height_) argument
230 , bottom (bottom_)
/external/v8/src/heap/
H A Dmark-compact.h132 bottom_(0),
148 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
150 inline bool IsEmpty() { return top_ == bottom_; }
188 bottom_ = ((bottom_ - 1) & mask_);
189 array_[bottom_] = object;
195 int bottom() { return bottom_; }
240 // empty when top_ == bottom_. It is full when top_ + 1 == bottom
243 int bottom_; member in class:v8::internal::MarkingDeque

Completed in 435 milliseconds