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.cpp5748 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT) in EvaluateBinaryTypeTrait()
5773 return Self.Context.hasSameType(LhsT, RhsT); in EvaluateBinaryTypeTrait()
5814 return LhsT->isVoidType(); in EvaluateBinaryTypeTrait()
5821 if (LhsT->isObjectType() || LhsT->isFunctionType()) in EvaluateBinaryTypeTrait()
5822 LhsT = Self.Context.getRValueReferenceType(LhsT); in EvaluateBinaryTypeTrait()
5860 if (!LhsT->isVoidType() && !LhsT->isIncompleteArrayType() && in EvaluateBinaryTypeTrait()
5861 Self.RequireCompleteType(KeyLoc, LhsT, in EvaluateBinaryTypeTrait()
5870 if (LhsT->isVoidType() || RhsT->isVoidType()) in EvaluateBinaryTypeTrait()
5875 if (LhsT->isObjectType() || LhsT->isFunctionType()) in EvaluateBinaryTypeTrait()
5876 LhsT = Self.Context.getRValueReferenceType(LhsT); in EvaluateBinaryTypeTrait()
[all …]
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp2193 template<typename LhsT, typename RhsT>
2195 LhsT m_lhs;
2269 template<typename LhsT>
2271 LhsT m_lhs;
2278 explicit UnaryExpr( LhsT lhs ) in UnaryExpr()
2285 template<typename LhsT, typename RhsT>
2296 template<typename LhsT, typename RhsT>
2307 template<typename LhsT>
2309 LhsT m_lhs;
2311 explicit ExprLhs( LhsT lhs ) : m_lhs( lhs ) {} in ExprLhs()
[all …]