Home
last modified time | relevance | path

Searched refs:right_ (Results 1 – 25 of 29) 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/examples/android/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()
/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/v8/src/
Dsplay-tree-inl.h52 node->right_ = root_->right_; in InsertInternal()
53 root_->right_ = nullptr; in InsertInternal()
55 node->right_ = root_; in InsertInternal()
129 root_ = root_->right_; in FindLeastGreaterThan()
142 while (current->right_ != nullptr) current = current->right_; in FindGreatest()
194 root_ = root_->right_; in RemoveRootNode()
197 Node* right = root_->right_; in RemoveRootNode()
204 root_->right_ = right; in RemoveRootNode()
230 current->left_ = temp->right_; in Splay()
231 temp->right_ = current; in Splay()
[all …]
Dsplay-tree.h101 : key_(key), value_(value), left_(nullptr), right_(nullptr) {} in Node()
118 Node* right() { return right_; } in right()
126 Node* right_; variable
/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/webrtc/webrtc/modules/desktop_capture/
Ddesktop_geometry.h99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {} in DesktopRect()
103 int32_t right() const { return right_; } in right()
105 int32_t width() const { return right_ - left_; } in width()
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; } in is_empty()
115 right_ == other.right_ && bottom_ == other.bottom_; in equals()
133 : left_(left), top_(top), right_(right), bottom_(bottom) { in DesktopRect()
138 int32_t right_; variable
Ddesktop_geometry.cc30 right_ = std::min(right(), rect.right()); in IntersectWith()
35 right_ = 0; in IntersectWith()
43 right_ += dx; in Translate()
/external/googletest/googlemock/src/
Dgmock-matchers.cc127 right_(graph_->RhsSize(), kUnused) {} in MaxBipartiteMatchState()
198 if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) { in TryAugment()
201 right_[irhs] = ilhs; in TryAugment()
221 ::std::vector<size_t> right_;
/external/swiftshader/third_party/llvm-7.0/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/v8/src/ast/
Dast.cc762 return MatchSmiLiteralOperation(left_, right_, subexpr, literal) || in IsSmiLiteralOperation()
764 MatchSmiLiteralOperation(right_, left_, subexpr, literal)); in IsSmiLiteralOperation()
786 return MatchLiteralCompareTypeof(left_, op(), right_, expr, literal) || in IsLiteralCompareTypeof()
787 MatchLiteralCompareTypeof(right_, op(), left_, expr, literal); in IsLiteralCompareTypeof()
816 return MatchLiteralCompareUndefined(left_, op(), right_, expr) || in IsLiteralCompareUndefined()
817 MatchLiteralCompareUndefined(right_, op(), left_, expr); in IsLiteralCompareUndefined()
833 return MatchLiteralCompareNull(left_, op(), right_, expr) || in IsLiteralCompareNull()
834 MatchLiteralCompareNull(right_, op(), left_, expr); in IsLiteralCompareNull()
Dast.h1832 Expression* right() const { return right_; } in right()
1842 : Expression(pos, kBinaryOperation), left_(left), right_(right) { in BinaryOperation()
1848 Expression* right_; variable
1943 Expression* right() const { return right_; } in right()
1955 : Expression(pos, kCompareOperation), left_(left), right_(right) { in CompareOperation()
1961 Expression* right_; variable
/external/libchrome/base/synchronization/
Dwaitable_event.h194 mach_port_t Name() const { return right_.get(); }; in Name()
215 mac::ScopedMachReceiveRight right_; variable
/external/v8/src/compiler/
Djs-type-hint-lowering.cc57 right_(right), in JSSpeculativeBinopBuilder()
147 std::swap(left_, right_); // a > b => b < a in SpeculativeCompareOp()
152 std::swap(left_, right_); // a >= b => b <= a in SpeculativeCompareOp()
168 return graph()->NewNode(op, left_, right_, effect_, control_); in BuildSpeculativeOperation()
205 Node* right_; member in v8::internal::compiler::JSSpeculativeBinopBuilder
Dnode-matchers.h239 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) { in BinopMatcher()
243 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) { in BinopMatcher()
251 const Right& right() const { return right_; } in right()
258 std::swap(left_, right_); in SwapInputs()
274 Right right_; member

12