/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/googletest/googletest/include/gtest/ |
D | gtest-matchers.h | 595 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} in ComparisonBase() 598 return Matcher<Lhs>(new Impl<const Lhs&>(rhs_)); 610 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} in Impl() 613 return Op()(lhs, Unwrap(rhs_)); in MatchAndExplain() 617 UniversalPrint(Unwrap(rhs_), os); in DescribeTo() 621 UniversalPrint(Unwrap(rhs_), os); in DescribeNegationTo() 625 Rhs rhs_; 627 Rhs rhs_; variable
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | tiled_dot_emitter.cc | 238 rhs_(rhs), in ColumnMajorMatrixVectorProductEmitter() 266 llvm::Value* base_pointer = vsl_.ComputeOffsetPointer(rhs_, offset); in LoadRhsTile() 284 llvm::Value* rhs_; member in xla::cpu::__anon016ac5180111::ColumnMajorMatrixVectorProductEmitter 362 llvm::Value* rhs_element = vsl_.LoadScalar(rhs_, col); in EmitInnerLoopEpilogue() 463 rhs_(rhs), in RowMajorMatrixVectorProductEmitter() 495 llvm::Value* rhs_; member in xla::cpu::__anon016ac5180111::RowMajorMatrixVectorProductEmitter 571 llvm::Value* rhs_value = vsl_.LoadVector(rhs_, col); in EmitInnerLoopTiled() 597 vsl_.LoadScalar(rhs_, scalar_col)); in EmitInnerLoopEpilogue() 700 rhs_(rhs), in TiledSmallGemmEmitter() 754 llvm::Value* rhs_; member in xla::cpu::__anon016ac5180111::TiledSmallGemmEmitter [all …]
|
/external/bcc/src/cc/frontends/b/ |
D | type_check.cc | 141 TRY2(n->rhs_->accept(this)); in visit_assign_expr_node() 142 if (n->rhs_->typeof_ != ExprNode::STRUCT) in visit_assign_expr_node() 149 TRY2(n->rhs_->accept(this)); in visit_assign_expr_node() 150 if (n->rhs_->typeof_ != ExprNode::INTEGER) in visit_assign_expr_node() 195 TRY2(n->rhs_->accept(this)); in visit_binop_expr_node() 196 if (n->rhs_->typeof_ != ExprNode::INTEGER) in visit_binop_expr_node() 208 n->bit_width_ = std::max(n->lhs_->bit_width_, n->rhs_->bit_width_); in visit_binop_expr_node()
|
D | node.h | 241 ExprNode::Ptr rhs_; variable 243 : lhs_(move(id)), rhs_(move(rhs)) { in AssignExprNode() 248 : lhs_(move(lhs)), rhs_(move(rhs)) { in AssignExprNode() 298 ExprNode::Ptr rhs_; variable 300 : lhs_(move(lhs)), op_(op), rhs_(move(rhs)) in BinopExprNode()
|
D | printer.cc | 101 TRY2(n->rhs_->accept(this)); in visit_assign_expr_node() 124 TRY2(n->rhs_->accept(this)); in visit_binop_expr_node()
|
D | codegen_llvm.cc | 321 TRY2(n->rhs_->accept(this)); in visit_assign_expr_node() 333 TRY2(n->rhs_->accept(this)); in visit_assign_expr_node() 340 if (!n->rhs_->is_ref()) in visit_assign_expr_node() 450 TRY2(n->rhs_->accept(this)); in emit_short_circuit_and() 451 expr_ = B.CreateICmpNE(pop_expr(), B.getIntN(n->rhs_->bit_width_, 0)); in emit_short_circuit_and() 477 TRY2(n->rhs_->accept(this)); in emit_short_circuit_or() 478 expr_ = B.CreateICmpNE(pop_expr(), B.getIntN(n->rhs_->bit_width_, 0)); in emit_short_circuit_or() 500 TRY2(n->rhs_->accept(this)); in visit_binop_expr_node()
|
/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 __anonfdc984440111::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/clang/test/SemaCXX/ |
D | windows-arm-valist.cpp | 6 template <typename lhs_, typename rhs_>
|
/external/googletest/googlemock/test/ |
D | gmock-generated-matchers_test.cc | 120 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 123 *os << "is greater than " << rhs_; in DescribeTo() 127 const int diff = lhs - rhs_; in MatchAndExplain() 129 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 131 *listener << "which is the same as " << rhs_; in MatchAndExplain() 133 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 136 return lhs > rhs_; in MatchAndExplain() 140 int rhs_; member in __anon1e1588ef0111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 113 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 115 void DescribeTo(ostream* os) const override { *os << "is > " << rhs_; } in DescribeTo() 118 const int diff = lhs - rhs_; in MatchAndExplain() 120 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 122 *listener << "which is the same as " << rhs_; in MatchAndExplain() 124 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 127 return lhs > rhs_; in MatchAndExplain() 131 int rhs_; member in testing::gmock_matchers_test::__anon67385ff30111::GreaterThanMatcher
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/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_; 2705 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) { 2714 return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_)); [all …]
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 2248 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) { 2262 new Impl<const LhsContainer&>(tuple_matcher_, rhs_)); 2282 rhs_(rhs) {} 2285 *os << "contains " << rhs_.size() 2287 UniversalPrinter<RhsStlContainer>::Print(rhs_, os); 2292 *os << "doesn't contain exactly " << rhs_.size() 2295 UniversalPrint(rhs_, os); 2304 if (actual_size != rhs_.size()) { 2310 typename RhsStlContainer::const_iterator right = rhs_.begin(); 2342 const RhsStlContainer rhs_; [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));
|