/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/ |
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...] |
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...] |
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...] |
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...] |
/external/webrtc/webrtc/modules/desktop_capture/ |
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
|
desktop_geometry.cc | 28 left_ = std::max(left(), rect.left()); 33 left_ = 0; 41 left_ += dx;
|
/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/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/webp/src/enc/ |
token.c | 49 b->left_ = 0; 80 b->left_ = b->page_size_; 94 if (b->left_ > 0 || TBufferNewPage(b)) { 95 const int slot = --b->left_; 105 if (b->left_ > 0 || TBufferNewPage(b)) { 106 const int slot = --b->left_; 206 const int N = (p->next_ == NULL) ? b->left_ : 0; 230 const int N = (next == NULL) ? b->left_ : 0; 256 const int N = (next == NULL) ? b->left_ : 0;
|
/external/opencv3/3rdparty/libwebp/enc/ |
token.c | 48 b->left_ = 0; 72 b->left_ = MAX_NUM_TOKEN; 87 if (b->left_ > 0 || TBufferNewPage(b)) { 88 const int slot = --b->left_; 98 if (b->left_ > 0 || TBufferNewPage(b)) { 99 const int slot = --b->left_; 199 const int N = (p->next_ == NULL) ? b->left_ : 0; 223 const int N = (next == NULL) ? b->left_ : 0;
|
/external/deqp/framework/referencerenderer/ |
rrRenderState.hpp | 217 WindowRectangle (int left_, int bottom_, int width_, int height_) 218 : left (left_)
|
/external/v8/src/compiler/ |
node-matchers.h | 212 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) { 216 : NodeMatcher(node), left_(InputAt(0)), right_(InputAt(1)) { 223 const Left& left() const { return left_; } 231 std::swap(left_, right_); 243 Left left_; member in struct:v8::internal::compiler::BinopMatcher
|
/external/libchrome/base/test/ |
trace_event_analyzer.cc | 204 left_(query.left_), 262 DCHECK(left_.get()); 361 DCHECK(left_.get()); 547 return left_->query(); 617 left_(new QueryNode(left)), 627 left_(new QueryNode(left)),
|
trace_event_analyzer.h | 495 // Try to compare left_ against right_ based on operator_. 500 // Try to compare left_ against right_ based on operator_. 513 // Evaluate this Query as an arithmetic operator on left_ and right_. 539 scoped_refptr<QueryNode> left_; member in class:trace_analyzer::Query
|
/external/libvpx/libvpx/vp9/common/ |
vp9_loopfilter.h | 53 // Left_ entries refer to whether we apply a filter on the border to the
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_loopfilter.h | 65 // Left_ entries refer to whether we apply a filter on the border to the
|
/external/v8/src/ast/ |
ast-value-factory.h | 121 : length_(left->length() + right->length()), left_(left), right_(right) {} 129 const AstString* left_; member in class:v8::internal::final
|
ast.cc | 634 return MatchLiteralCompareTypeof(left_, op_, right_, expr, check) || 635 MatchLiteralCompareTypeof(right_, op_, left_, expr, check); 668 return MatchLiteralCompareUndefined(left_, op_, right_, expr, isolate) || 669 MatchLiteralCompareUndefined(right_, op_, left_, expr, isolate); 687 return MatchLiteralCompareNull(left_, op_, right_, expr) || 688 MatchLiteralCompareNull(right_, op_, left_, expr);
|
/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...] |
/system/tools/aidl/ |
ast_cpp.cpp | 362 : left_(lhs), 368 left_->Write(to);
|