Searched refs:RhsT (Results 1 – 7 of 7) sorted by relevance
/external/catch2/include/internal/ |
D | catch_decomposer.h | 49 template<typename LhsT, typename RhsT> 53 RhsT m_rhs; 61 BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) in BinaryExpr() 69 auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { 76 auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { 83 auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { 90 auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { 97 auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { 104 auto operator < ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { 111 auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseDenseProduct.h | 203 template<typename LhsT, typename RhsT, bool NeedToTranspose> 207 typedef typename conditional<NeedToTranspose,RhsT,LhsT>::type Lhs1; 208 typedef typename conditional<NeedToTranspose,LhsT,RhsT>::type ActualRhs; 209 typedef Product<LhsT,RhsT,DefaultProduct> ProdXprType;
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 4325 QualType RhsT, SourceLocation KeyLoc); 4481 QualType RhsT, SourceLocation KeyLoc) { in EvaluateBinaryTypeTrait() argument 4482 assert(!LhsT->isDependentType() && !RhsT->isDependentType() && in EvaluateBinaryTypeTrait() 4495 const RecordType *rhsRecord = RhsT->getAs<RecordType>(); in EvaluateBinaryTypeTrait() 4498 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT) in EvaluateBinaryTypeTrait() 4508 if (Self.RequireCompleteType(KeyLoc, RhsT, in EvaluateBinaryTypeTrait() 4516 return Self.Context.hasSameType(LhsT, RhsT); in EvaluateBinaryTypeTrait() 4519 RhsT.getUnqualifiedType()); in EvaluateBinaryTypeTrait() 4548 if (RhsT->isFunctionType() || RhsT->isArrayType()) in EvaluateBinaryTypeTrait() 4552 if (RhsT->isVoidType()) in EvaluateBinaryTypeTrait() [all …]
|
/external/bcc/tests/cc/ |
D | catch.hpp | 1238 …template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& … 1239 …template<typename RhsT> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& … 1807 template<typename RhsT> 1808 ResultBuilder& operator == ( RhsT const& rhs ) { in operator ==() 1812 template<typename RhsT> 1813 ResultBuilder& operator != ( RhsT const& rhs ) { in operator !=() 1817 template<typename RhsT> 1818 ResultBuilder& operator < ( RhsT const& rhs ) { in operator <() 1822 template<typename RhsT> 1823 ResultBuilder& operator > ( RhsT const& rhs ) { in operator >() [all …]
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 5090 QualType RhsT, SourceLocation KeyLoc); 5255 QualType RhsT, SourceLocation KeyLoc) { in EvaluateBinaryTypeTrait() argument 5256 assert(!LhsT->isDependentType() && !RhsT->isDependentType() && in EvaluateBinaryTypeTrait() 5267 const RecordType *rhsRecord = RhsT->getAs<RecordType>(); in EvaluateBinaryTypeTrait() 5270 const ObjCObjectType *RHSObjTy = RhsT->getAs<ObjCObjectType>(); in EvaluateBinaryTypeTrait() 5280 KeyLoc, RhsT, diag::err_incomplete_type_used_in_type_trait_expr)) in EvaluateBinaryTypeTrait() 5286 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT) in EvaluateBinaryTypeTrait() 5303 if (Self.RequireCompleteType(KeyLoc, RhsT, in EvaluateBinaryTypeTrait() 5311 return Self.Context.hasSameType(LhsT, RhsT); in EvaluateBinaryTypeTrait() 5316 QualType Rhs = Self.getASTContext().getUnqualifiedArrayType(RhsT, RhsQuals); in EvaluateBinaryTypeTrait() [all …]
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 2219 template<typename LhsT, typename RhsT> 2223 RhsT m_rhs; 2231 BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) in BinaryExpr() 2239 auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator &&() 2246 auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ||() 2253 auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ==() 2260 auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator !=() 2267 auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >() 2274 auto operator < ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator <() 2281 auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >=() [all …]
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 2209 template<typename LhsT, typename RhsT> 2213 RhsT m_rhs; 2221 BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) in BinaryExpr() 2229 auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator &&() 2236 auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ||() 2243 auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ==() 2250 auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator !=() 2257 auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >() 2264 auto operator < ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator <() 2271 auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >=() [all …]
|