HomeSort by relevance Sort by last modified time
    Searched refs:left_ (Results 1 - 25 of 36) sorted by null

1 2

  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.cc 28 left_ = std::max(left(), rect.left());
33 left_ = 0;
41 left_ += dx;
desktop_geometry.h 99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
101 int32_t left() const { return left_; }
105 int32_t width() const { return right_ - left_; }
108 DesktopVector top_left() const { return DesktopVector(left_, top_); }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
114 return left_ == other.left_ && top_ == other.top_ &&
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
136 int32_t left_; member in class:webrtc::DesktopRect
  /external/v8/src/
splay-tree-inl.h 49 node->left_ = root_;
54 node->left_ = root_->left_;
55 root_->left_ = NULL;
103 root_ = root_->left_;
152 while (current->left_ != NULL)
153 current = current->left_;
192 if (root_->left_ == NULL) {
199 root_ = root_->left_;
226 if (current->left_ == NULL
    [all...]
splay-tree.h 105 left_(NULL),
122 Node* left() { return left_; }
130 Node* left_; member in class:v8::internal::SplayTree::Node
  /external/ImageMagick/Magick++/lib/Magick++/
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_)
    [all...]
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_);
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_);
209 extern MagickPPExport int operator == ( const VPath& left_,
211 extern MagickPPExport int operator != ( const VPath& left_,
213 extern MagickPPExport int operator > ( const VPath& left_,
215 extern MagickPPExport int operator < ( const VPath& left_,
    [all...]
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_);
    [all...]
  /external/ImageMagick/Magick++/lib/
Geometry.cpp 24 MagickPPExport int Magick::operator == (const Magick::Geometry& left_,
27 return((left_.aspect() == right_.aspect()) &&
28 (left_.fillArea() == right_.fillArea()) &&
29 (left_.greater() == right_.greater()) &&
30 (left_.height() == right_.height()) &&
31 (left_.isValid() == right_.isValid()) &&
32 (left_.less() == right_.less()) &&
33 (left_.limitPixels() == right_.limitPixels()) &&
34 (left_.percent() == right_.percent()) &&
35 (left_.width() == right_.width()) &
    [all...]
Color.cpp 20 MagickPPExport int Magick::operator == (const Magick::Color &left_,
23 return((left_.isValid() == right_.isValid()) &&
24 (left_.quantumRed() == right_.quantumRed()) &&
25 (left_.quantumGreen() == right_.quantumGreen()) &&
26 (left_.quantumBlue() == right_.quantumBlue()));
29 MagickPPExport int Magick::operator != (const Magick::Color &left_,
32 return(!(left_ == right_));
35 MagickPPExport int Magick::operator > (const Magick::Color &left_,
38 return(!(left_ < right_ ) && (left_ != right_ ))
    [all...]
Drawable.cpp 22 MagickPPExport int Magick::operator == (const Magick::Coordinate& left_,
25 return((left_.x() == right_.x()) && (left_.y() == right_.y()));
28 MagickPPExport int Magick::operator != (const Magick::Coordinate& left_,
31 return(!(left_ == right_));
34 MagickPPExport int Magick::operator > (const Magick::Coordinate& left_,
37 return (!(left_ < right_) && (left_ != right_));
40 MagickPPExport int Magick::operator < (const Magick::Coordinate& left_,
44 return((sqrt(left_.x()*left_.x() + left_.y()*left_.y()))
    [all...]
Image.cpp 36 MagickPPExport int Magick::operator == (const Magick::Image &left_,
40 return((left_.rows() == right_.rows()) &&
41 (left_.columns() == right_.columns()) &&
42 (left_.signature() == right_.signature()));
45 MagickPPExport int Magick::operator != (const Magick::Image &left_,
48 return(!(left_ == right_));
51 MagickPPExport int Magick::operator > (const Magick::Image &left_,
54 return(!(left_ < right_) && (left_ != right_));
57 MagickPPExport int Magick::operator < (const Magick::Image &left_,
    [all...]
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
field_of_view.h 19 FieldOfView() : left_(0.0f), right_(0.0f), bottom_(0.0f), top_(0.0f) {}
23 : left_(left), right_(right), bottom_(bottom), top_(top) {}
29 float GetLeft() const { return left_; }
35 void SetLeft(float left) { left_ = left; }
42 float x_left = -std::tan(left_) * z_near;
86 float left_; member in class:android::dvr::FieldOfView
  /external/webp/src/enc/
token_enc.c 49 b->left_ = 0;
80 b->left_ = b->page_size_;
95 if (b->left_ > 0 || TBufferNewPage(b)) {
96 const int slot = --b->left_;
107 if (b->left_ > 0 || TBufferNewPage(b)) {
108 const int slot = --b->left_;
215 const int N = (p->next_ == NULL) ? b->left_ : 0;
239 const int N = (next == NULL) ? b->left_ : 0;
265 const int N = (next == NULL) ? b->left_ : 0;
  /external/googletest/googlemock/src/
gmock-matchers.cc 146 // a vector<int> called 'left_' whose elements are initialized to the
150 // - An edge from source to each left_ node
152 // - An edge from each left_ node to each right_ node, if the
155 // When the TryAugment() method adds a flow, it sets left_[l] = r for some
164 // When the method augments a flow (moving left_[l] from some r1 to some
170 // information in 'graph' and in left_.
202 left_(graph_->LhsSize(), kUnused),
224 // source to sink starting at the left_[ilhs] node.
225 GTEST_CHECK_(left_[ilhs] == kUnused)
226 << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs] local
299 ::std::vector<size_t> left_; member in class:testing::internal::MaxBipartiteMatchState
    [all...]
  /external/v8/testing/gmock/src/
gmock-matchers.cc 146 // a vector<int> called 'left_' whose elements are initialized to the
150 // - An edge from source to each left_ node
152 // - An edge from each left_ node to each right_ node, if the
155 // When the TryAugment() method adds a flow, it sets left_[l] = r for some
164 // When the method augments a flow (moving left_[l] from some r1 to some
170 // information in 'graph' and in left_.
202 left_(graph_->LhsSize(), kUnused),
224 // source to sink starting at the left_[ilhs] node.
225 GTEST_CHECK_(left_[ilhs] == kUnused)
226 << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs] local
299 ::std::vector<size_t> left_; member in class:testing::internal::MaxBipartiteMatchState
    [all...]
  /external/v8/src/compiler/
js-type-hint-lowering.cc 24 left_(left),
94 return graph()->NewNode(op, left_, right_, effect_, control_);
109 Node* left_; member in class:v8::internal::compiler::final
node-matchers.h 235 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) {
239 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) {
246 const Left& left() const { return left_; }
254 std::swap(left_, right_);
266 Left left_; member in struct:v8::internal::compiler::BinopMatcher
loop-variable-optimizer.cc 79 Node* left() const { return left_; }
86 : left_(left), right_(right), kind_(kind), next_(next) {}
89 Node* left_; member in class:v8::internal::compiler::LoopVariableOptimizer::Constraint
  /external/deqp/framework/referencerenderer/
rrRenderState.hpp 228 WindowRectangle (int left_, int bottom_, int width_, int height_)
229 : left (left_)
  /external/libchrome/base/test/
trace_event_analyzer.cc 234 left_(query.left_),
292 DCHECK(left_.get());
391 DCHECK(left_.get());
600 return left_->query();
670 left_(new QueryNode(left)),
680 left_(new QueryNode(left)),
  /external/v8/src/ast/
ast.cc 923 return MatchLiteralCompareTypeof(left_, op(), right_, expr, check) ||
924 MatchLiteralCompareTypeof(right_, op(), left_, expr, check);
    [all...]
ast-value-factory.h 144 left_(left),
153 const AstString* left_; member in class:v8::internal::final
  /toolchain/binutils/binutils-2.25/gold/
expression.cc 356 : left_(left), right_(right)
361 delete this->left_;
371 return this->left_->eval_maybe_dot(eei->symtab, eei->layout,
404 { this->left_->print(f); }
423 Expression* left_; member in class:gold::Binary_expression
    [all...]
  /external/fmtlib/support/
docopt.py 117 left_ = left[:pos] + left[pos + 1:]
127 return True, left_, collected + [match]
129 return True, left_, collected
130 return True, left_, collected + [match]

Completed in 380 milliseconds

1 2