Home
last modified time | relevance | path

Searched refs:lhs_ (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/libs/variant/test/
Dtest3.cpp41 Expr lhs_; member
48 Add(const Expr& l, const Expr& r) : lhs_(l), rhs_(r) { } in Add()
49 Add(const Add& other) : lhs_(other.lhs_), rhs_(other.rhs_) { } in Add()
51 Expr lhs_; member
56 Sub::Sub(const Expr& l, const Expr& r) : lhs_(l), rhs_(r) { } in Sub()
57 Sub::Sub(const Sub& other) : lhs_(other.lhs_), rhs_(other.rhs_) { } in Sub()
67 out << '(' << a.lhs_ << '+' << a.rhs_ << ')'; in operator <<()
73 out << '(' << a.lhs_ << '-' << a.rhs_ << ')'; in operator <<()
87 int n1 = boost::apply_visitor(calc, x.lhs_); in operator ()()
95 return boost::apply_visitor(Calculator(), x.lhs_) in operator ()()
/third_party/boost/boost/variant/
Dvariant.hpp704 Variant& lhs_; member in boost::detail::variant::backup_assigner
713 : lhs_(lhs) in backup_assigner()
745 copy_rhs_content_(lhs_.storage_.address(), rhs_content_); in backup_assign_impl()
750 new(lhs_.storage_.address()) in backup_assign_impl()
753 static_cast<backup_holder<LhsT>* >(lhs_.storage_.address()) in backup_assign_impl()
762 lhs_.indicate_which(rhs_which_); // nothrow in backup_assign_impl()
783 copy_rhs_content_(lhs_.storage_.address(), rhs_content_); in backup_assign_impl()
788 new(lhs_.storage_.address()) in backup_assign_impl()
799 lhs_.indicate_which(rhs_which_); // nothrow in backup_assign_impl()
818 copy_rhs_content_(lhs_.storage_.address(), rhs_content_); in backup_assign_impl()
[all …]
/third_party/boost/boost/spirit/home/support/detail/lexer/
Dgenerator.hpp459 charset_list &lhs_) in partition_tokens() argument
471 lhs_->push_back (static_cast<charset *>(0)); in partition_tokens()
472 lhs_->back () = rhs_->front (); in partition_tokens()
480 iter_ = lhs_->begin (); in partition_tokens()
481 end_ = lhs_->end (); in partition_tokens()
509 iter_ = lhs_->insert (++iter_, in partition_tokens()
515 end_ = lhs_->end (); in partition_tokens()
521 lhs_->push_back (static_cast<charset *>(0)); in partition_tokens()
522 lhs_->back () = r_.release (); in partition_tokens()
596 const index_set_vector &set_mapping_, equivset_list &lhs_) in build_equiv_list() argument
[all …]
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/
Dparser.hpp146 typename tokeniser::num_token lhs_; in reduce() local
159 lhs_ = token_stack_.top (); in reduce()
160 action_ = lhs_.precedence (rhs_._type); in reduce()
355 node *lhs_ = tree_node_stack_.top (); in perform_or() local
358 node_ptr_vector_->back () = new selection_node (lhs_, rhs_); in perform_or()
369 node *lhs_ = tree_node_stack_.top (); in sequence() local
372 node_ptr_vector_->back () = new sequence_node (lhs_, rhs_); in sequence()
380 node *lhs_ = tree_node_stack_.top (); in optional() local
382 node::node_vector &firstpos_ = lhs_->firstpos (); in optional()
397 node_ptr_vector_->back () = new selection_node (lhs_, rhs_); in optional()
[all …]
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/tree/
Dselection_node.hpp76 node *lhs_ = new_node_stack_.top (); in copy_node() local
79 node_ptr_vector_->back () = new selection_node (lhs_, rhs_); in copy_node()
Dsequence_node.hpp94 node *lhs_ = new_node_stack_.top (); in copy_node() local
97 node_ptr_vector_->back () = new sequence_node (lhs_, rhs_); in copy_node()
/third_party/skia/third_party/externals/tint/src/transform/
Ddecompose_memory_access.cc352 const Offset* Add(LHS&& lhs_, RHS&& rhs_) { in Add()
353 auto* lhs = ToOffset(std::forward<LHS>(lhs_)); in Add()
383 const Offset* Mul(LHS&& lhs_, RHS&& rhs_) { in Mul()
384 auto* lhs = ToOffset(std::forward<LHS>(lhs_)); in Mul()