Home
last modified time | relevance | path

Searched refs:ReturnT (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DPointerLikeTypeTraits.h146 template <typename ReturnT, typename... ParamTs>
147 struct PointerLikeTypeTraits<ReturnT (*)(ParamTs...)>
148 : FunctionPointerLikeTypeTraits<4, ReturnT (*)(ParamTs...)> {};
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFunctionExtras.h80 template <typename ReturnT, typename... ParamTs> class UniqueFunctionBase {
121 using CallPtrT = ReturnT (*)(void *CallableAddr,
217 static ReturnT CallImpl(void *CallableAddr,
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp886 PrimType ReturnT = *S.getContext().classify(Call->getType()); in interp__builtin_bswap() local
891 INT_TYPE_SWITCH(ReturnT, in interp__builtin_bswap()
1121 std::optional<PrimType> ReturnT = S.getContext().classify(Call); in InterpretBuiltin() local
1453 return retPrimValue(S, OpPC, Dummy, ReturnT); in InterpretBuiltin()
H A DCompiler.cpp3897 std::optional<PrimType> ReturnT = classify(E); in VisitBuiltinCallExpr() local
3900 if (!Initializing && !ReturnT && !ReturnType->isVoidType()) { in VisitBuiltinCallExpr()
3920 assert(ReturnT); in VisitBuiltinCallExpr()
3921 return this->emitPop(*ReturnT, E); in VisitBuiltinCallExpr()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp8725 template<typename ClassT, typename ReturnT, typename... Args>
8726 struct UnaryLambdaTraits<ReturnT( ClassT::* )( Args... ) const> {
8730 template<typename ClassT, typename ReturnT, typename ArgT>
8731 struct UnaryLambdaTraits<ReturnT( ClassT::* )( ArgT ) const> {
8734 using ReturnType = ReturnT;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp7115 QualType ReturnT = Methods[b]->getReturnType(); in SelectBestMethod() local
7116 if (ReturnT->isObjCIdType()) in SelectBestMethod()