/third_party/boost/boost/spirit/home/support/detail/lexer/ |
D | string_token.hpp | 107 bool operator < (const basic_string_token &rhs_) const in operator <() 109 return _negated < rhs_._negated || in operator <() 110 (_negated == rhs_._negated && _charset < rhs_._charset); in operator <() 129 void intersect (basic_string_token &rhs_, basic_string_token &overlap_) in intersect() 131 if ((any () && rhs_.any ()) || (_negated == rhs_._negated && in intersect() 132 !any () && !rhs_.any ())) in intersect() 134 intersect_same_types (rhs_, overlap_); in intersect() 138 intersect_diff_types (rhs_, overlap_); in intersect() 219 void intersect_same_types (basic_string_token &rhs_, in intersect_same_types() 226 rhs_.clear (); in intersect_same_types() [all …]
|
D | state_machine.hpp | 71 bool operator == (const data &rhs_) const in operator ==() 73 return dfa == rhs_.dfa && in operator ==() 74 states == rhs_.states && in operator ==() 75 state == rhs_.state && in operator ==() 76 transitions == rhs_.transitions && in operator ==() 77 transition == rhs_.transition && in operator ==() 78 end_state == rhs_.end_state && in operator ==() 79 id == rhs_.id && in operator ==() 80 unique_id == rhs_.unique_id && in operator ==() 81 goto_dfa == rhs_.goto_dfa && in operator ==() [all …]
|
D | file_input.hpp | 45 bool operator == (const data &rhs_) const in operator ==() 47 return id == rhs_.id && unique_id == rhs_.unique_id && in operator ==() 48 start == rhs_.start && end == rhs_.end && in operator ==() 49 state == rhs_.state; in operator ==() 58 bool operator == (const iterator &rhs_) const in operator ==() 60 return _data == rhs_._data; in operator ==() 63 bool operator != (const iterator &rhs_) const in operator !=() 65 return !(*this == rhs_); in operator !=()
|
D | input.hpp | 46 bool operator == (const data &rhs_) const in operator ==() 48 return id == rhs_.id && unique_id == rhs_.unique_id && in operator ==() 49 start == rhs_.start && end == rhs_.end && in operator ==() 50 bol == rhs_.bol && state == rhs_.state; in operator ==() 59 bool operator == (const iterator &rhs_) const in operator ==() 61 return _data == rhs_._data; in operator ==() 64 bool operator != (const iterator &rhs_) const in operator !=() 66 return !(*this == rhs_); in operator !=()
|
D | generator.hpp | 461 charset_list rhs_; in partition_tokens() local 463 fill_rhs_list (map_, rhs_); in partition_tokens() 465 if (!rhs_->empty ()) in partition_tokens() 472 lhs_->back () = rhs_->front (); in partition_tokens() 473 rhs_->pop_front (); in partition_tokens() 475 while (!rhs_->empty ()) in partition_tokens() 477 charset_ptr r_ (rhs_->front ()); in partition_tokens() 479 rhs_->pop_front (); in partition_tokens() 598 equivset_list rhs_; in build_equiv_list() local 600 fill_rhs_list (vector_, set_mapping_, rhs_); in build_equiv_list() [all …]
|
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/tokeniser/ |
D | re_tokeniser_state.hpp | 50 (const basic_re_tokeniser_state &rhs_) in operator =() 52 _start = rhs_._start; in operator =() 53 _end = rhs_._end; in operator =() 54 _curr = rhs_._curr; in operator =() 55 _flags = rhs_._flags; in operator =() 56 _locale = rhs_._locale; in operator =() 57 _paren_count = rhs_._paren_count; in operator =() 58 _in_string = rhs_._in_string; in operator =() 59 _seen_BOL_assertion = rhs_._seen_BOL_assertion; in operator =() 60 _seen_EOL_assertion = rhs_._seen_EOL_assertion; in operator =()
|
/third_party/boost/libs/variant/test/ |
D | test3.cpp | 42 Expr rhs_; 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() 52 Expr rhs_; 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 <<() 88 int n2 = boost::apply_visitor(calc, x.rhs_); in operator ()() 96 - boost::apply_visitor(Calculator(), x.rhs_); in operator ()()
|
D | jobs.h | 218 int_adder(int rhs) : rhs_(rhs) { } in int_adder() 222 lhs += rhs_; in operator() 231 int rhs_; member
|
/third_party/boost/boost/spirit/home/support/detail/lexer/partition/ |
D | equivset.hpp | 58 void intersect (equivset &rhs_, equivset &overlap_) in intersect() 60 intersect_indexes (rhs_._index_vector, overlap_._index_vector); in intersect() 75 rhs_._followpos.begin (); in intersect() 77 rhs_._followpos.end (); in intersect() 97 if (rhs_._index_vector.empty ()) in intersect() 99 rhs_._followpos.clear (); in intersect() 105 void intersect_indexes (index_vector &rhs_, index_vector &overlap_) in intersect_indexes() 109 index_vector::iterator rhs_iter_ = rhs_.begin (); in intersect_indexes() 110 index_vector::iterator rhs_end_ = rhs_.end (); in intersect_indexes() 130 rhs_iter_ = rhs_.erase (rhs_iter_); in intersect_indexes() [all …]
|
D | charset.hpp | 43 void intersect (basic_charset &rhs_, basic_charset &overlap_) in intersect() 45 _token.intersect (rhs_._token, overlap_._token); in intersect() 57 iter_ = rhs_._index_set.begin (); in intersect() 58 end_ = rhs_._index_set.end (); in intersect() 70 if (rhs_._token.empty ()) in intersect() 72 rhs_._index_set.clear (); in intersect()
|
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/ |
D | parser.hpp | 147 typename tokeniser::num_token rhs_; in reduce() local 153 rhs_ = token_stack_.top (); in reduce() 155 handle_.push (rhs_); in reduce() 160 action_ = lhs_.precedence (rhs_._type); in reduce() 166 switch (rhs_._type) in reduce() 202 optional (rhs_._type == token::OPT, node_vector_ptr_, in reduce() 208 zero_or_more (rhs_._type == token::ZEROORMORE, node_vector_ptr_, in reduce() 214 one_or_more (rhs_._type == token::ONEORMORE, node_vector_ptr_, in reduce() 220 repeatn (rhs_._type == token::REPEATN, handle_.top (), in reduce() 351 node *rhs_ = tree_node_stack_.top (); in perform_or() local [all …]
|
/third_party/boost/boost/spirit/home/support/detail/lexer/containers/ |
D | ptr_vector.hpp | 63 bool operator == (const ptr_vector &rhs_) const in operator ==() 65 bool equal_ = _vector.size () == rhs_._vector.size (); in operator ==() 71 typename vector::const_iterator rhs_iter_ = rhs_._vector.begin (); in operator ==()
|
/third_party/mesa3d/src/gtest/include/gtest/ |
D | gtest-matchers.h | 531 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} in ComparisonBase() 534 return Matcher<Lhs>(new Impl<const Lhs&>(rhs_)); 546 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} in Impl() 549 return Op()(lhs, Unwrap(rhs_)); in MatchAndExplain() 553 UniversalPrint(Unwrap(rhs_), os); in DescribeTo() 557 UniversalPrint(Unwrap(rhs_), os); in DescribeNegationTo() 561 Rhs rhs_; 563 Rhs rhs_; variable
|
/third_party/boost/boost/spirit/home/classic/core/non_terminal/ |
D | subrule.hpp | 154 operator,(subrule_parser<ID, DefT, ContextT> const& rhs_) in operator ,() 164 RestT>(rhs_, rest)); in operator ,() 194 subrule_parser(subrule_t const& start_, DefT const& rhs_) in subrule_parser() 195 : rhs(rhs_), start(start_) {} in subrule_parser()
|
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/tree/ |
D | selection_node.hpp | 72 node *rhs_ = new_node_stack_.top (); in copy_node() local 79 node_ptr_vector_->back () = new selection_node (lhs_, rhs_); in copy_node()
|
D | sequence_node.hpp | 90 node *rhs_ = new_node_stack_.top (); in copy_node() local 97 node_ptr_vector_->back () = new sequence_node (lhs_, rhs_); in copy_node()
|
/third_party/googletest/googletest/include/gtest/ |
D | gtest-matchers.h | 710 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} 716 return Op()(lhs, Unwrap(rhs_)); 720 UniversalPrint(Unwrap(rhs_), os); 724 UniversalPrint(Unwrap(rhs_), os); 737 Rhs rhs_;
|
/third_party/boost/boost/variant/ |
D | variant.hpp | 615 const T& rhs_; member in boost::detail::variant::direct_assigner 620 : rhs_(rhs) in direct_assigner() 628 lhs = rhs_; in operator ()() 658 T& rhs_; member in boost::detail::variant::direct_mover 663 : rhs_(rhs) in direct_mover() 671 lhs = ::boost::detail::variant::move(rhs_); in operator ()()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | decompose_memory_access.cc | 352 const Offset* Add(LHS&& lhs_, RHS&& rhs_) { in Add() 354 auto* rhs = ToOffset(std::forward<RHS>(rhs_)); in Add() 383 const Offset* Mul(LHS&& lhs_, RHS&& rhs_) { in Mul() 385 auto* rhs = ToOffset(std::forward<RHS>(rhs_)); in Mul()
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 2521 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {} 2530 new Impl<const LhsContainer&>(tuple_matcher_, rhs_)); 2550 rhs_(rhs) {} 2553 *os << "contains " << rhs_.size() 2555 UniversalPrinter<RhsStlContainer>::Print(rhs_, os); 2560 *os << "doesn't contain exactly " << rhs_.size() 2563 UniversalPrint(rhs_, os); 2572 if (actual_size != rhs_.size()) { 2578 typename RhsStlContainer::const_iterator right = rhs_.begin(); 2610 const RhsStlContainer rhs_; [all …]
|
/third_party/boost/libs/thread/doc/ |
D | synchronized_value_ref.qbk | 279 [[Throws:] [Any exception thrown by `swap(value_, rhs.value)` or `mtx_.lock()` or `rhs_.mtx_.lock()…
|
/third_party/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 119 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 121 void DescribeTo(ostream* os) const override { *os << "is > " << rhs_; } in DescribeTo() 124 const int diff = lhs - rhs_; in MatchAndExplain() 126 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 128 *listener << "which is the same as " << rhs_; in MatchAndExplain() 130 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 133 return lhs > rhs_; in MatchAndExplain() 137 int rhs_; member in testing::gmock_matchers_test::__anon3f1e227b0111::GreaterThanMatcher
|
/third_party/cef/tools/distrib/gtest/ |
D | gtest.h | 6796 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} 6802 return Op()(lhs, Unwrap(rhs_)); 6806 UniversalPrint(Unwrap(rhs_), os); 6810 UniversalPrint(Unwrap(rhs_), os); 6823 Rhs rhs_;
|