/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-matchers.h | 752 explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \ 755 return MakeMatcher(new Impl<Lhs>(rhs_)); \ 761 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \ 764 return lhs op rhs_; \ 768 UniversalPrint(rhs_, os); \ 772 UniversalPrint(rhs_, os); \ 775 Rhs rhs_; \ 778 Rhs rhs_; \ 1565 rhs_(rhs), nan_eq_nan_(nan_eq_nan) {} in FloatingEqMatcher() 1572 rhs_(rhs), nan_eq_nan_(nan_eq_nan) {} in Impl() [all …]
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.cc | 163 : lhs_(std::move(lhs)), rhs_(std::move(rhs)) {} in AndBoolExprImpl() 169 return lhs_->Compile(pc, rhs_->Compile(pc, then_node, else_node), in Compile() 175 BoolExpr rhs_; member in sandbox::bpf_dsl::__anon424c09e80111::AndBoolExprImpl 183 : lhs_(std::move(lhs)), rhs_(std::move(rhs)) {} in OrBoolExprImpl() 190 rhs_->Compile(pc, then_node, else_node)); in Compile() 195 BoolExpr rhs_; member in sandbox::bpf_dsl::__anon424c09e80111::OrBoolExprImpl
|
/external/clang/test/SemaCXX/ |
D | windows-arm-valist.cpp | 6 template <typename lhs_, typename rhs_>
|
/external/google-breakpad/src/testing/test/ |
D | gmock-generated-matchers_test.cc | 256 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 259 *os << "is greater than " << rhs_; in DescribeTo() 264 const int diff = lhs - rhs_; in MatchAndExplain() 266 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 268 *listener << "which is the same as " << rhs_; in MatchAndExplain() 270 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 273 return lhs > rhs_; in MatchAndExplain() 277 int rhs_; member in __anon4585a87a0111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 144 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 147 *os << "is > " << rhs_; in DescribeTo() 152 const int diff = lhs - rhs_; in MatchAndExplain() 154 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 156 *listener << "which is the same as " << rhs_; in MatchAndExplain() 158 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 161 return lhs > rhs_; in MatchAndExplain() 165 int rhs_; member in testing::gmock_matchers_test::GreaterThanMatcher
|
/external/googletest/googlemock/test/ |
D | gmock-generated-matchers_test.cc | 257 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 260 *os << "is greater than " << rhs_; in DescribeTo() 265 const int diff = lhs - rhs_; in MatchAndExplain() 267 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 269 *listener << "which is the same as " << rhs_; in MatchAndExplain() 271 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 274 return lhs > rhs_; in MatchAndExplain() 278 int rhs_; member in __anon37f03ca50111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 164 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 167 *os << "is > " << rhs_; in DescribeTo() 172 const int diff = lhs - rhs_; in MatchAndExplain() 174 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 176 *listener << "which is the same as " << rhs_; in MatchAndExplain() 178 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 181 return lhs > rhs_; in MatchAndExplain() 185 int rhs_; member in testing::gmock_matchers_test::GreaterThanMatcher
|
/external/v8/testing/gmock/test/ |
D | gmock-generated-matchers_test.cc | 258 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 261 *os << "is greater than " << rhs_; in DescribeTo() 266 const int diff = lhs - rhs_; in MatchAndExplain() 268 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 270 *listener << "which is the same as " << rhs_; in MatchAndExplain() 272 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 275 return lhs > rhs_; in MatchAndExplain() 279 int rhs_; member in __anonc3b66c0d0111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 164 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 167 *os << "is > " << rhs_; in DescribeTo() 172 const int diff = lhs - rhs_; in MatchAndExplain() 174 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 176 *listener << "which is the same as " << rhs_; in MatchAndExplain() 178 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 181 return lhs > rhs_; in MatchAndExplain() 185 int rhs_; member in testing::gmock_matchers_test::GreaterThanMatcher
|
/external/v8/testing/gmock/include/gmock/ |
D | gmock-matchers.h | 895 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} 898 return MakeMatcher(new Impl<Lhs>(rhs_)); 905 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} 908 return Op()(lhs, rhs_); 912 UniversalPrint(rhs_, os); 916 UniversalPrint(rhs_, os); 919 Rhs rhs_; 922 Rhs rhs_; 2702 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) { 2711 return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_)); [all …]
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 895 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} 898 return MakeMatcher(new Impl<Lhs>(rhs_)); 905 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} 908 return Op()(lhs, rhs_); 912 UniversalPrint(rhs_, os); 916 UniversalPrint(rhs_, os); 919 Rhs rhs_; 922 Rhs rhs_; 2702 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) { 2711 return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_)); [all …]
|
/external/fmtlib/test/gmock/ |
D | gmock.h | 5536 explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \ 5539 return MakeMatcher(new Impl<Lhs>(rhs_)); \ 5545 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \ 5548 return lhs op rhs_; \ 5552 UniversalPrint(rhs_, os); \ 5556 UniversalPrint(rhs_, os); \ 5559 Rhs rhs_; \ 5562 Rhs rhs_; \ 6477 rhs_(rhs), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) { 6484 rhs_(rhs), nan_eq_nan_(nan_eq_nan), max_abs_error_(max_abs_error) { [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorContractionThreadPool.h | 310 rhs_(rhs), 401 RhsMapper& rhs_; 501 rhs_.getSubMapper(k * bk_, n1 * bn_), bk(k), bn(n1));
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-codegen-arm64.cc | 109 rhs_(rhs) { } in CompareAndBranch() 112 __ CompareAndBranch(lhs_, rhs_, cond_, label); in Emit() 116 __ CompareAndBranch(lhs_, rhs_, NegateCondition(cond_), label); in EmitInverted() 122 const Operand& rhs_; member in v8::internal::CompareAndBranch
|
/external/bison/ |
D | ChangeLog-2012 | 11410 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
|