/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/v8/src/codegen/ |
D | string-constants.h | 94 rhs_(rhs) {} in StringCons() 97 const StringConstantBase* rhs() const { return rhs_; } in rhs() 103 const StringConstantBase* rhs_; variable
|
/external/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
|
/external/googletest/googletest/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
|
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/ |
D | gtest-matchers.h | 540 explicit ComparisonBase(const Rhs &rhs) : rhs_(rhs) {} in ComparisonBase() 543 return Matcher<Lhs>(new Impl<const Lhs &>(rhs_)); 559 explicit Impl(const Rhs &rhs) : rhs_(rhs) {} in Impl() 562 return Op()(lhs, Unwrap(rhs_)); in MatchAndExplain() 566 UniversalPrint(Unwrap(rhs_), os); in DescribeTo() 570 UniversalPrint(Unwrap(rhs_), os); in DescribeNegationTo() 574 Rhs rhs_; 576 Rhs rhs_; variable
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | linalg_ops_test.py | 512 rhs_ = np.array([[1, 1]], dtype=self.dtype).T 514 rhs_, shape=rhs_.shape if self.use_static_shape else None) 521 expected_ = np.linalg.solve(x_, rhs_) 535 rhs_ = np.array([[1, 1]], dtype=self.dtype).T 537 rhs_, shape=rhs_.shape if self.use_static_shape else None) 544 expected_ = np.linalg.solve(x_, rhs_[np.newaxis])
|
/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::__anond258595a0111::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::__anond258595a0111::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::__anond258595a0111::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() 209 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/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 __anon4a6120060111::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 | 122 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 125 *os << "is greater than " << rhs_; in DescribeTo() 129 const int diff = lhs - rhs_; in MatchAndExplain() 131 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 133 *listener << "which is the same as " << rhs_; in MatchAndExplain() 135 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 138 return lhs > rhs_; in MatchAndExplain() 142 int rhs_; member in __anon569bfb310111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 116 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 118 void DescribeTo(ostream* os) const override { *os << "is > " << rhs_; } in DescribeTo() 121 const int diff = lhs - rhs_; in MatchAndExplain() 123 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 125 *listener << "which is the same as " << rhs_; in MatchAndExplain() 127 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 130 return lhs > rhs_; in MatchAndExplain() 134 int rhs_; member in testing::gmock_matchers_test::__anon86e4b7b50111::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 | 2261 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {} 2270 new Impl<const LhsContainer&>(tuple_matcher_, rhs_)); 2290 rhs_(rhs) {} 2293 *os << "contains " << rhs_.size() 2295 UniversalPrinter<RhsStlContainer>::Print(rhs_, os); 2300 *os << "doesn't contain exactly " << rhs_.size() 2303 UniversalPrint(rhs_, os); 2312 if (actual_size != rhs_.size()) { 2318 typename RhsStlContainer::const_iterator right = rhs_.begin(); 2350 const RhsStlContainer rhs_; [all …]
|
/external/fmtlib/test/gmock/ |
D | gmock.h | 5537 explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \ 5540 return MakeMatcher(new Impl<Lhs>(rhs_)); \ 5546 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \ 5549 return lhs op rhs_; \ 5553 UniversalPrint(rhs_, os); \ 5557 UniversalPrint(rhs_, os); \ 5560 Rhs rhs_; \ 5563 Rhs rhs_; \ 6478 rhs_(rhs), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) { 6485 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));
|