Searched refs:rhs_ (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/SemaCXX/
H A Dwindows-arm-valist.cpp6 template <typename lhs_, typename rhs_>
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.cc163 : lhs_(std::move(lhs)), rhs_(std::move(rhs)) {}
169 return lhs_->Compile(pc, rhs_->Compile(pc, then_node, else_node),
175 BoolExpr rhs_; member in class:sandbox::bpf_dsl::__anon10152::AndBoolExprImpl
183 : lhs_(std::move(lhs)), rhs_(std::move(rhs)) {}
190 rhs_->Compile(pc, then_node, else_node));
195 BoolExpr rhs_; member in class:sandbox::bpf_dsl::__anon10152::OrBoolExprImpl
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h752 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) {}
1572 rhs_(rh
1599 *os << "is approximately " << rhs_; local
1615 *os << "isn't approximately " << rhs_; local
1622 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher::Impl
1647 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher
2015 const StlContainer rhs_; member in class:testing::internal::ContainerEqMatcher
2197 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
2204 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-generated-matchers_test.cc256 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
259 *os << "is greater than " << rhs_; local
264 const int diff = lhs - rhs_;
266 *listener << "which is " << diff << " more than " << rhs_; local
268 *listener << "which is the same as " << rhs_; local
270 *listener << "which is " << -diff << " less than " << rhs_;
273 return lhs > rhs_;
277 int rhs_; member in class:__anon6904::GreaterThanMatcher
H A Dgmock-matchers_test.cc144 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
147 *os << "is > " << rhs_; local
152 const int diff = lhs - rhs_;
154 *listener << "which is " << diff << " more than " << rhs_; local
156 *listener << "which is the same as " << rhs_; local
158 *listener << "which is " << -diff << " less than " << rhs_;
161 return lhs > rhs_;
165 int rhs_; member in class:testing::gmock_matchers_test::GreaterThanMatcher
/external/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc258 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
261 *os << "is greater than " << rhs_; local
266 const int diff = lhs - rhs_;
268 *listener << "which is " << diff << " more than " << rhs_; local
270 *listener << "which is the same as " << rhs_; local
272 *listener << "which is " << -diff << " less than " << rhs_;
275 return lhs > rhs_;
279 int rhs_; member in class:__anon6992::GreaterThanMatcher
H A Dgmock-matchers_test.cc164 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
167 *os << "is > " << rhs_; local
172 const int diff = lhs - rhs_;
174 *listener << "which is " << diff << " more than " << rhs_; local
176 *listener << "which is the same as " << rhs_; local
178 *listener << "which is " << -diff << " less than " << rhs_;
181 return lhs > rhs_;
185 int rhs_; member in class:testing::gmock_matchers_test::GreaterThanMatcher
/external/v8/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc258 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
261 *os << "is greater than " << rhs_; local
266 const int diff = lhs - rhs_;
268 *listener << "which is " << diff << " more than " << rhs_; local
270 *listener << "which is the same as " << rhs_; local
272 *listener << "which is " << -diff << " less than " << rhs_;
275 return lhs > rhs_;
279 int rhs_; member in class:__anon21887::GreaterThanMatcher
H A Dgmock-matchers_test.cc164 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
167 *os << "is > " << rhs_; local
172 const int diff = lhs - rhs_;
174 *listener << "which is " << diff << " more than " << rhs_; local
176 *listener << "which is the same as " << rhs_; local
178 *listener << "which is " << -diff << " less than " << rhs_;
181 return lhs > rhs_;
185 int rhs_; member in class:testing::gmock_matchers_test::GreaterThanMatcher
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h895 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_; member in class:testing::internal::ComparisonBase::Impl
922 Rhs rhs_; member in class:testing::internal::ComparisonBase
2702 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {
2711 return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_));
2786 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
2793 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h895 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_; member in class:testing::internal::ComparisonBase::Impl
922 Rhs rhs_; member in class:testing::internal::ComparisonBase
2702 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {
2711 return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_));
2786 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
2793 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorContractionThreadPool.h310 rhs_(rhs),
401 RhsMapper& rhs_; member in class:Eigen::TensorEvaluator::Context
501 rhs_.getSubMapper(k * bk_, n1 * bn_), bk(k), bn(n1));
/external/fmtlib/test/gmock/
H A Dgmock.h5536 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_(rh
6532 *os << "is approximately " << rhs_; local
6551 *os << "isn't approximately " << rhs_; local
6565 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher::Impl
6593 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher
7015 const StlContainer rhs_; member in class:testing::internal::ContainerEqMatcher
7201 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
7208 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc108 rhs_(rhs) { }
111 __ CompareAndBranch(lhs_, rhs_, cond_, label);
115 __ CompareAndBranch(lhs_, rhs_, NegateCondition(cond_), label);
121 const Operand& rhs_; member in class:v8::internal::CompareAndBranch

Completed in 313 milliseconds