HomeSort by relevance Sort by last modified time
    Searched full:right_ (Results 1 - 25 of 27) sorted by null

1 2

  /external/v8/src/
splay-tree-inl.h 50 node->right_ = root_->right_;
51 root_->right_ = NULL;
53 node->right_ = root_;
127 root_ = root_->right_;
140 while (current->right_ != NULL)
141 current = current->right_;
194 root_ = root_->right_;
197 Node* right = root_->right_;
204 root_->right_ = right
    [all...]
splay-tree.h 106 right_(NULL) { }
123 Node* right() { return right_; }
131 Node* right_; member in class:v8::internal::SplayTree::Node
  /external/ImageMagick/Magick++/lib/
Geometry.cpp 25 const Magick::Geometry& right_)
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 23 const Magick::Coordinate& right_)
25 return((left_.x() == right_.x()) && (left_.y() == right_.y()));
29 const Magick::Coordinate& right_)
31 return(!(left_ == right_));
35 const Magick::Coordinate& right_)
37 return (!(left_ < right_) && (left_ != right_));
41 const Magick::Coordinate& right_)
45 (sqrt(right_.x()*right_.x() + right_.y()*right_.y())))
    [all...]
Color.cpp 21 const Magick::Color &right_)
23 return((left_.isValid() == right_.isValid()) &&
24 (left_.quantumRed() == right_.quantumRed()) &&
25 (left_.quantumGreen() == right_.quantumGreen()) &&
26 (left_.quantumBlue() == right_.quantumBlue()));
30 const Magick::Color &right_)
32 return(!(left_ == right_));
36 const Magick::Color &right_)
38 return(!(left_ < right_ ) && (left_ != right_ ));
    [all...]
Image.cpp 37 const Magick::Image &right_)
40 return((left_.rows() == right_.rows()) &&
41 (left_.columns() == right_.columns()) &&
42 (left_.signature() == right_.signature()));
46 const Magick::Image &right_)
48 return(!(left_ == right_));
52 const Magick::Image &right_)
54 return(!(left_ < right_) && (left_ != right_));
58 const Magick::Image &right_)
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
103 int32_t right() const { return right_; }
105 int32_t width() const { return right_ - left_; }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
115 right_ == other.right_ && bottom_ == other.bottom_;
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
138 int32_t right_; member in class:webrtc::DesktopRect
desktop_geometry.cc 30 right_ = std::min(right(), rect.right());
35 right_ = 0;
43 right_ += 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_);
210 const VPath& right_ );
212 const VPath& right_ );
214 const VPath& right_ );
216 const VPath& right_ );
    [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 151 // - An edge from each right_ node to sink
152 // - An edge from each left_ node to each right_ node, if the
172 // As an optimization, there is a second vector<int> called right_ which
203 right_(graph_->RhsSize(), kUnused) {
270 // right_[irhs] == kUnused means that there is residual flow from
277 if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) {
278 // Add flow from left_[ilhs] to right_[irhs].
280 right_[irhs] = ilhs;
289 // (i.e. an element) and each element of right_ is a right hand sid
300 ::std::vector<size_t> right_; member in class:testing::internal::MaxBipartiteMatchState
    [all...]
  /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)) {
224 const Right& right() const { return right_; }
231 std::swap(left_, right_);
244 Right right_; member in struct:v8::internal::compiler::BinopMatcher
  /external/v8/src/ast/
ast-value-factory.h 121 : length_(left->length() + right->length()), left_(left), right_(right) {}
130 const AstString* right_; member in class:v8::internal::final
ast.cc 660 return MatchLiteralCompareTypeof(left_, op_, right_, expr, check) ||
661 MatchLiteralCompareTypeof(right_, op_, left_, expr, check);
691 return MatchLiteralCompareUndefined(left_, op_, right_, expr) ||
692 MatchLiteralCompareUndefined(right_, op_, left_, expr);
710 return MatchLiteralCompareNull(left_, op_, right_, expr) ||
711 MatchLiteralCompareNull(right_, op_, left_, expr);
    [all...]
ast-value-factory.cc 122 ->NewConsString(left_->string(), right_->string())
ast.h 2208 Expression* right_; member in class:v8::internal::final
2329 Expression* right_; member in class:v8::internal::final
    [all...]
  /external/libchrome/base/test/
trace_event_analyzer.cc 205 right_(query.right_),
263 DCHECK(right_.get() || is_unary_operator());
362 DCHECK(right_.get() || is_unary_operator());
551 return right_->query();
618 right_(new QueryNode(right)),
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_.
540 scoped_refptr<QueryNode> right_; member in class:trace_analyzer::Query
  /toolchain/binutils/binutils-2.25/gold/
expression.cc 356 : left_(left), right_(right)
362 delete this->right_;
389 return this->right_->eval_maybe_dot(eei->symtab, eei->layout,
408 { this->right_->print(f); }
424 Expression* right_; member in class:gold::Binary_expression
    [all...]
  /system/tools/aidl/
ast_cpp.cpp 363 right_(rhs),
370 right_->Write(to);
ast_cpp.h 328 std::unique_ptr<AstNode> right_; member in class:android::aidl::cpp::Comparison
  /external/libcxx/include/
__tree     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
__tree     [all...]

Completed in 4187 milliseconds

1 2