/external/libchrome/ui/gfx/geometry/ |
D | insets_f.h | 17 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() 22 left_(horizontal), in InsetsF() 26 : top_(top), left_(left), bottom_(bottom), right_(right) {} in InsetsF() 29 constexpr float left() const { return left_; } in left() 35 constexpr float width() const { return left_ + right_; } in width() 46 left_ = left; in Set() 52 return top_ == insets.top_ && left_ == insets.left_ && 62 left_ += insets.left_; 69 left_ -= insets.left_; [all …]
|
D | insets.h | 26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {} in Insets() 28 : top_(all), left_(all), bottom_(all), right_(all) {} in Insets() 31 left_(horizontal), in Insets() 35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets() 38 constexpr int left() const { return left_; } in left() 44 constexpr int width() const { return left_ + right_; } in width() 55 left_ = left; in Set() 61 return top_ == insets.top_ && left_ == insets.left_ && 71 left_ += insets.left_; 78 left_ -= insets.left_; [all …]
|
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | geom.h | 89 : left_(0), in BoundingBox() 95 : left_(bounding_box.left_), in BoundingBox() 99 SCHECK(left_ < right_, "Bounds out of whack! %.2f vs %.2f!", left_, right_); in BoundingBox() 107 : left_(left), in BoundingBox() 111 SCHECK(left_ < right_, "Bounds out of whack! %.2f vs %.2f!", left_, right_); in BoundingBox() 116 : left_(MIN(point1.x, point2.x)), in BoundingBox() 122 bounds_array[0] = left_; in CopyToArray() 129 return right_ - left_; in GetWidth() 147 return Point2f((left_ + right_) / 2.0f, in GetCenter() 157 const float new_left = MAX(this->left_, that.left_); in Intersect() [all …]
|
D | gl_utils.h | 29 bounding_box.left_, bounding_box.bottom_, in DrawBox() 30 bounding_box.left_, bounding_box.top_, in DrawBox() 31 bounding_box.left_, bounding_box.top_, in DrawBox() 36 bounding_box.left_, bounding_box.bottom_ in DrawBox()
|
D | tracked_object.h | 105 temp_box.left_ -= kBufferSize; in Draw() 112 temp_box.left_ -= -2.0f * kBufferSize; in Draw()
|
D | tracked_object.cc | 136 last_known_position_.left_, last_known_position_.top_, in OnDetection() 138 detection_position.left_, detection_position.top_, in OnDetection()
|
/external/ImageMagick/Magick++/lib/ |
D | Geometry.cpp | 24 MagickPPExport int Magick::operator == (const Magick::Geometry& left_, 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 …]
|
D | Color.cpp | 20 MagickPPExport int Magick::operator == (const Magick::Color &left_, 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 ==() 36 MagickPPExport int Magick::operator != (const Magick::Color &left_, in operator !=() argument [all …]
|
D | Drawable.cpp | 22 MagickPPExport int Magick::operator == (const Magick::Coordinate& left_, in operator ==() argument 25 return((left_.x() == right_.x()) && (left_.y() == right_.y())); in operator ==() 28 MagickPPExport int Magick::operator != (const Magick::Coordinate& left_, in operator !=() argument 31 return(!(left_ == right_)); in operator !=() 34 MagickPPExport int Magick::operator > (const Magick::Coordinate& left_, in operator >() argument 37 return (!(left_ < right_) && (left_ != right_)); in operator >() 40 MagickPPExport int Magick::operator < (const Magick::Coordinate& left_, in operator <() argument 44 return((sqrt(left_.x()*left_.x() + left_.y()*left_.y())) < in operator <() 48 MagickPPExport int Magick::operator >= (const Magick::Coordinate& left_, in operator >=() argument 51 return((left_ > right_) || (left_ == right_)); in operator >=() [all …]
|
/external/v8/src/ |
D | splay-tree-inl.h | 51 node->left_ = root_; in InsertInternal() 56 node->left_ = root_->left_; in InsertInternal() 57 root_->left_ = nullptr; in InsertInternal() 105 root_ = root_->left_; in FindGreatestLessThan() 153 while (current->left_ != nullptr) current = current->left_; in FindLeast() 192 if (root_->left_ == nullptr) { in RemoveRootNode() 199 root_ = root_->left_; in RemoveRootNode() 226 if (current->left_ == nullptr) break; in Splay() 227 if (Config::Compare(key, current->left_->key_) < 0) { in Splay() 229 Node* temp = current->left_; in Splay() [all …]
|
D | splay-tree.h | 101 : key_(key), value_(value), left_(nullptr), right_(nullptr) {} in Node() 117 Node* left() { return left_; } in left() 125 Node* left_; variable
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Geometry.h | 23 (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_);
|
D | Color.h | 20 (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_);
|
D | Drawable.h | 82 (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_); 2441 extern MagickPPExport int operator == ( const PathArcArgs& left_, 2443 extern MagickPPExport int operator != ( const PathArcArgs& left_, 2445 extern MagickPPExport int operator > ( const PathArcArgs& left_, 2447 extern MagickPPExport int operator < ( const PathArcArgs& left_, [all …]
|
D | Image.h | 36 (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/ |
D | desktop_geometry.h | 99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {} in DesktopRect() 101 int32_t left() const { return left_; } in left() 105 int32_t width() const { return right_ - left_; } in width() 108 DesktopVector top_left() const { return DesktopVector(left_, top_); } in top_left() 111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; } in is_empty() 114 return left_ == other.left_ && top_ == other.top_ && in equals() 133 : left_(left), top_(top), right_(right), bottom_(bottom) { in DesktopRect() 136 int32_t left_; variable
|
D | desktop_geometry.cc | 28 left_ = std::max(left(), rect.left()); in IntersectWith() 33 left_ = 0; in IntersectWith() 41 left_ += dx; in Translate()
|
/external/webp/src/enc/ |
D | token_enc.c | 49 b->left_ = 0; in VP8TBufferInit() 80 b->left_ = b->page_size_; in TBufferNewPage() 95 if (b->left_ > 0 || TBufferNewPage(b)) { in AddToken() 96 const int slot = --b->left_; in AddToken() 107 if (b->left_ > 0 || TBufferNewPage(b)) { in AddConstantToken() 108 const int slot = --b->left_; in AddConstantToken() 206 const int N = (next == NULL) ? b->left_ : 0; in VP8EmitTokens() 232 const int N = (next == NULL) ? b->left_ : 0; in VP8EstimateTokenSize()
|
/external/googletest/googlemock/src/ |
D | gmock-matchers.cc | 126 left_(graph_->LhsSize(), kUnused), in MaxBipartiteMatchState() 148 GTEST_CHECK_(left_[ilhs] == kUnused) in Compute() 149 << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs]; in Compute() 155 for (size_t ilhs = 0; ilhs < left_.size(); ++ilhs) { in Compute() 156 size_t irhs = left_[ilhs]; in Compute() 200 left_[ilhs] = irhs; in TryAugment() 220 ::std::vector<size_t> left_;
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/src/ |
D | gmock-matchers.cc | 202 left_(graph_->LhsSize(), kUnused), in MaxBipartiteMatchState() 225 GTEST_CHECK_(left_[ilhs] == kUnused) in Compute() 226 << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs]; in Compute() 232 for (size_t ilhs = 0; ilhs < left_.size(); ++ilhs) { in Compute() 233 size_t irhs = left_[ilhs]; in Compute() 279 left_[ilhs] = irhs; in TryAugment() 299 ::std::vector<size_t> left_;
|
/external/v8/src/ast/ |
D | ast.cc | 762 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()
|
/external/v8/src/compiler/ |
D | js-type-hint-lowering.cc | 56 left_(left), 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() 204 Node* left_; member in v8::internal::compiler::JSSpeculativeBinopBuilder
|
D | node-matchers.h | 239 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) { in BinopMatcher() 243 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) { in BinopMatcher() 250 const Left& left() const { return left_; } in left() 258 std::swap(left_, right_); in SwapInputs() 273 Left left_; member
|
/external/deqp/framework/referencerenderer/ |
D | rrRenderState.hpp | 228 WindowRectangle (int left_, int bottom_, int width_, int height_) in WindowRectangle() 229 : left (left_) in WindowRectangle()
|
/external/libaom/libaom/test/ |
D | dr_prediction_test.cc | 166 left_ = &left_data_[kOffset]; in DrPredTest() 190 params_.ref_fn(dst_ref_, dst_stride_, bw_, bh_, above_, left_, in Predict() 200 above_, left_, upsample_above_, in Predict() 284 Pixel *left_; member in __anonccce7b080111::DrPredTest
|