Home
last modified time | relevance | path

Searched refs:LhsT (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp5648 QualType LhsT = Lhs->getType(); in CheckConvertibilityForTypeTraits() local
5686 if (LhsT->isObjectType() || LhsT->isFunctionType()) in CheckConvertibilityForTypeTraits()
5687 LhsT = Self.Context.getRValueReferenceType(LhsT); in CheckConvertibilityForTypeTraits()
5692 OpaqueValueExpr(KeyLoc, LhsT.getNonLValueExprType(Self.Context), in CheckConvertibilityForTypeTraits()
5693 Expr::getValueKindForType(LhsT)); in CheckConvertibilityForTypeTraits()
5972 QualType LhsT = Lhs->getType(); in EvaluateBinaryTypeTrait() local
5975 assert(!LhsT->isDependentType() && !RhsT->isDependentType() && in EvaluateBinaryTypeTrait()
5985 const RecordType *lhsRecord = LhsT->getAs<RecordType>(); in EvaluateBinaryTypeTrait()
5988 const ObjCObjectType *LHSObjTy = LhsT->getAs<ObjCObjectType>(); in EvaluateBinaryTypeTrait()
6006 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT) in EvaluateBinaryTypeTrait()
[all …]
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp2193 template<typename LhsT, typename RhsT>
2195 LhsT m_lhs;
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 …]