Home
last modified time | relevance | path

Searched refs:right_ (Results 1 – 25 of 30) sorted by relevance

12

/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()
24 right_(horizontal) {} in InsetsF()
26 : top_(top), left_(left), bottom_(bottom), right_(right) {} in InsetsF()
31 constexpr float right() const { return right_; } in right()
35 constexpr float width() const { return left_ + right_; } in width()
48 right_ = right; in Set()
53 bottom_ == insets.bottom_ && right_ == insets.right_;
64 right_ += insets.right_;
71 right_ -= insets.right_;
[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()
33 right_(horizontal) {} in Insets()
35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets()
40 constexpr int right() const { return right_; } in right()
44 constexpr int width() const { return left_ + right_; } in width()
57 right_ = right; in Set()
62 bottom_ == insets.bottom_ && right_ == insets.right_;
73 right_ += insets.right_;
80 right_ -= insets.right_;
[all …]
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dgeom.h91 right_(0), in BoundingBox()
97 right_(bounding_box.right_), in BoundingBox()
99 SCHECK(left_ < right_, "Bounds out of whack! %.2f vs %.2f!", left_, right_); in BoundingBox()
109 right_(right), in BoundingBox()
111 SCHECK(left_ < right_, "Bounds out of whack! %.2f vs %.2f!", left_, right_); in BoundingBox()
118 right_(MAX(point1.x, point2.x)), in BoundingBox()
124 bounds_array[2] = right_; in CopyToArray()
129 return right_ - left_; in GetWidth()
147 return Point2f((left_ + right_) / 2.0f, in GetCenter()
158 const float new_right = MIN(this->right_, that.right_); in Intersect()
[all …]
Dgl_utils.h32 bounding_box.right_, bounding_box.top_, in DrawBox()
33 bounding_box.right_, bounding_box.top_, in DrawBox()
34 bounding_box.right_, bounding_box.bottom_, in DrawBox()
35 bounding_box.right_, bounding_box.bottom_, in DrawBox()
Dtracked_object.h107 temp_box.right_ += kBufferSize; in Draw()
114 temp_box.right_ += -2.0f * kBufferSize; in Draw()
Dintegral_image.h152 bounding_box.right_, bounding_box.bottom_); in GetCode()
Dobject_tracker.cc454 float x3 = box.right_; in AddQuadrants()
/external/ImageMagick/Magick++/lib/
DGeometry.cpp25 const Magick::Geometry& right_) in operator ==() argument
27 return((left_.aspect() == right_.aspect()) && in operator ==()
28 (left_.fillArea() == right_.fillArea()) && in operator ==()
29 (left_.greater() == right_.greater()) && in operator ==()
30 (left_.height() == right_.height()) && in operator ==()
31 (left_.isValid() == right_.isValid()) && in operator ==()
32 (left_.less() == right_.less()) && in operator ==()
33 (left_.limitPixels() == right_.limitPixels()) && in operator ==()
34 (left_.percent() == right_.percent()) && in operator ==()
35 (left_.width() == right_.width()) && in operator ==()
[all …]
DColor.cpp21 const Magick::Color &right_) in operator ==() argument
24 return((left_.isValid() == right_.isValid()) && in operator ==()
25 (fabs(left_.quantumRed()-right_.quantumRed()) < MagickEpsilon) && in operator ==()
26 (fabs(left_.quantumGreen()-right_.quantumGreen()) < MagickEpsilon) && in operator ==()
27 (fabs(left_.quantumBlue()-right_.quantumBlue()) < MagickEpsilon)); in operator ==()
29 return((left_.isValid() == right_.isValid()) && in operator ==()
30 (left_.quantumRed() == right_.quantumRed()) && in operator ==()
31 (left_.quantumGreen() == right_.quantumGreen()) && in operator ==()
32 (left_.quantumBlue() == right_.quantumBlue())); in operator ==()
37 const Magick::Color &right_) in operator !=() argument
[all …]
DDrawable.cpp23 const Magick::Coordinate& right_) in operator ==() argument
25 return((left_.x() == right_.x()) && (left_.y() == right_.y())); in operator ==()
29 const Magick::Coordinate& right_) in operator !=() argument
31 return(!(left_ == right_)); in operator !=()
35 const Magick::Coordinate& right_) in operator >() argument
37 return (!(left_ < right_) && (left_ != right_)); in operator >()
41 const Magick::Coordinate& right_) in operator <() argument
45 (sqrt(right_.x()*right_.x() + right_.y()*right_.y()))); in operator <()
49 const Magick::Coordinate& right_) in operator >=() argument
51 return((left_ > right_) || (left_ == right_)); in operator >=()
[all …]
DImage.cpp37 const Magick::Image &right_) in operator ==() argument
40 return((left_.rows() == right_.rows()) && in operator ==()
41 (left_.columns() == right_.columns()) && in operator ==()
42 (left_.signature() == right_.signature())); in operator ==()
46 const Magick::Image &right_) in operator !=() argument
48 return(!(left_ == right_)); in operator !=()
52 const Magick::Image &right_) in operator >() argument
54 return(!(left_ < right_) && (left_ != right_)); in operator >()
58 const Magick::Image &right_) in operator <() argument
62 (right_.rows() * right_.columns())); in operator <()
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DGeometry.h23 (const Magick::Geometry& left_,const Magick::Geometry& right_);
25 (const Magick::Geometry& left_,const Magick::Geometry& right_);
27 (const Magick::Geometry& left_,const Magick::Geometry& right_);
29 (const Magick::Geometry& left_,const Magick::Geometry& right_);
31 (const Magick::Geometry& left_,const Magick::Geometry& right_);
33 (const Magick::Geometry& left_,const Magick::Geometry& right_);
145 (const Magick::Offset& left_,const Magick::Offset& right_);
147 (const Magick::Offset& left_,const Magick::Offset& right_);
202 (const Magick::Point& left_,const Magick::Point& right_);
204 (const Magick::Point& left_,const Magick::Point& right_);
DColor.h20 (const Magick::Color& left_,const Magick::Color& right_);
22 (const Magick::Color& left_,const Magick::Color& right_);
24 (const Magick::Color& left_,const Magick::Color& right_);
26 (const Magick::Color& left_,const Magick::Color& right_);
28 (const Magick::Color& left_,const Magick::Color& right_);
30 (const Magick::Color& left_,const Magick::Color& right_);
DDrawable.h82 (const Coordinate& left_,const Coordinate& right_);
84 (const Coordinate& left_, const Coordinate& right_);
86 (const Coordinate& left_, const Coordinate& right_);
88 (const Coordinate& left_, const Coordinate& right_);
90 (const Coordinate& left_, const Coordinate& right_);
92 (const Coordinate& left_, const Coordinate& right_);
2442 const PathArcArgs& right_ );
2444 const PathArcArgs& right_ );
2446 const PathArcArgs& right_ );
2448 const PathArcArgs& right_ );
[all …]
DImage.h36 (const Magick::Image &left_,const Magick::Image &right_);
38 (const Magick::Image &left_,const Magick::Image &right_);
40 (const Magick::Image &left_,const Magick::Image &right_);
42 (const Magick::Image &left_,const Magick::Image &right_);
44 (const Magick::Image &left_,const Magick::Image &right_);
46 (const Magick::Image &left_,const Magick::Image &right_);
/external/icing/icing/index/iterator/
Ddoc-hit-info-iterator-or.cc58 : left_(std::move(left_it)), right_(std::move(right_it)) {} in DocHitInfoIteratorOr()
81 if (right_->Advance().ok()) { in Advance()
82 right_document_id_ = right_->doc_hit_info().document_id(); in Advance()
103 chosen = right_.get(); in Advance()
107 chosen = right_.get(); in Advance()
118 doc_hit_info_.MergeSectionsFrom(right_->doc_hit_info()); in Advance()
119 hit_intersect_section_ids_mask_ &= right_->hit_intersect_section_ids_mask(); in Advance()
126 return left_->GetNumBlocksInspected() + right_->GetNumBlocksInspected(); in GetNumBlocksInspected()
130 return left_->GetNumLeafAdvanceCalls() + right_->GetNumLeafAdvanceCalls(); in GetNumLeafAdvanceCalls()
134 return absl_ports::StrCat("(", left_->ToString(), " OR ", right_->ToString(), in ToString()
Ddoc-hit-info-iterator-or.h56 right_->PopulateMatchedTermsStats(matched_terms_stats,
63 std::unique_ptr<DocHitInfoIterator> right_; variable
/external/webrtc/modules/desktop_capture/
Ddesktop_geometry.h104 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {} in DesktopRect()
108 int32_t right() const { return right_; } in right()
110 int32_t width() const { return right_ - left_; } in width()
113 void set_width(int32_t width) { right_ = left_ + width; } in set_width()
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()
163 int32_t right_; variable
Ddesktop_geometry.cc31 right_ = std::min(right(), rect.right()); in IntersectWith()
36 right_ = 0; in IntersectWith()
53 right_ = std::max(right(), rect.right()); in UnionWith()
60 right_ += dx; in Translate()
70 right_ += right_offset; in Extend()
75 right_ += static_cast<int>(std::round(width() * (horizontal - 1))); in Scale()
/external/openscreen/cast/streaming/testing/
Dmessage_pipe.h69 right_(right_id_) { in MessagePipe()
70 left_.SetOtherEnd(&right_); in MessagePipe()
71 right_.SetOtherEnd(&left_); in MessagePipe()
77 MessagePipeEnd* right() { return &right_; } in right()
83 MessagePipeEnd right_; variable
/external/googletest/googlemock/src/
Dgmock-matchers.cc126 right_(graph_->RhsSize(), kUnused) {} in MaxBipartiteMatchState()
197 if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) { in TryAugment()
200 right_[irhs] = ilhs; in TryAugment()
220 ::std::vector<size_t> right_;
/external/llvm-project/llvm/utils/unittest/googlemock/src/
Dgmock-matchers.cc203 right_(graph_->RhsSize(), kUnused) { in MaxBipartiteMatchState()
277 if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) { in TryAugment()
280 right_[irhs] = ilhs; in TryAugment()
300 ::std::vector<size_t> right_;
/external/libchrome/base/synchronization/
Dwaitable_event.h194 mach_port_t Name() const { return right_.get(); }; in Name()
215 mac::ScopedMachReceiveRight right_; variable
/external/libchrome/base/test/
Dtrace_event_analyzer.cc309 DCHECK(right_.get() || is_unary_operator()); in Evaluate()
408 DCHECK(right_.get() || is_unary_operator()); in EvaluateArithmeticOperator()
620 return right_->query(); in right()
687 right_(new QueryNode(right)), in Query()
Dtrace_event_analyzer.h660 scoped_refptr<QueryNode> right_; variable

12