Searched refs:RhsT (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 5649 QualType RhsT = Rhs->getType(); in CheckConvertibilityForTypeTraits() local 5677 if (RhsT->isFunctionType() || RhsT->isArrayType()) in CheckConvertibilityForTypeTraits() 5681 if (!Self.isCompleteType(Rhs->getTypeLoc().getBeginLoc(), RhsT) || in CheckConvertibilityForTypeTraits() 5682 Self.isAbstractType(Rhs->getTypeLoc().getBeginLoc(), RhsT)) in CheckConvertibilityForTypeTraits() 5690 InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT)); in CheckConvertibilityForTypeTraits() 5973 QualType RhsT = Rhs->getType(); in EvaluateBinaryTypeTrait() local 5975 assert(!LhsT->isDependentType() && !RhsT->isDependentType() && in EvaluateBinaryTypeTrait() 5986 const RecordType *rhsRecord = RhsT->getAs<RecordType>(); in EvaluateBinaryTypeTrait() 5989 const ObjCObjectType *RHSObjTy = RhsT->getAs<ObjCObjectType>(); in EvaluateBinaryTypeTrait() 5999 Rhs->getTypeLoc().getBeginLoc(), RhsT, in EvaluateBinaryTypeTrait() [all …]
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 2193 template<typename LhsT, typename RhsT> 2197 RhsT m_rhs; 2205 BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) in BinaryExpr() 2213 auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator &&() 2220 auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ||() 2227 auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ==() 2234 auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator !=() 2241 auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >() 2248 auto operator < ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator <() 2255 auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >=() [all …]
|