Home
last modified time | relevance | path

Searched refs:FuncType (Results 1 – 9 of 9) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h655 using FuncType = ReturnType (*)();
657 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
666 using FuncType = ReturnType (*)(ArgType1);
669 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
679 using FuncType = ReturnType (*)(ArgType1, ArgType2);
683 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp791 const FunctionType *FuncType = Decl->getFunctionType(); in checkPostCall() local
792 if (!FuncType) in checkPostCall()
794 QualType ReturnType = FuncType->getReturnType(); in checkPostCall()
/netbsd/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp411 for (uint32_t FuncType : Section.FunctionTypes) in writeSectionContent() local
412 encodeULEB128(FuncType, OS); in writeSectionContent()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp647 struct FuncType { in checkMustTailAttr() struct
660 auto GetMethodType = [this, St, MTA](const CXXMethodDecl *CMD, FuncType &Type, in checkMustTailAttr()
672 Type.MemberType = FuncType::ft_static_member; in checkMustTailAttr()
675 Type.MemberType = FuncType::ft_non_static_member; in checkMustTailAttr()
722 CalleeType.MemberType = FuncType::ft_pointer_to_member; in checkMustTailAttr()
786 auto CheckTypesMatch = [this](FuncType CallerType, FuncType CalleeType, in checkMustTailAttr()
H A DSemaChecking.cpp1783 const auto *FuncType = in CheckBuiltinFunctionCall() local
1786 if (!FuncType) { in CheckBuiltinFunctionCall()
1793 if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) { in CheckBuiltinFunctionCall()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp179 using FuncType = std::function<Value *(Instruction *, LLVMContext &)>; typedef
180 Rule(StringRef N, FuncType F) : Name(N), Fn(F) {} in Rule()
182 FuncType Fn;
185 void addRule(StringRef N, const Rule::FuncType &F) { in addRule()
/netbsd/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp3100 QualType FuncType = getSimpleFunctionType( in SynthMsgSendStretCallExpr() local
3102 QualType castType = Context->getPointerType(FuncType); in SynthMsgSendStretCallExpr()
3178 ID, FuncType, nullptr, SC_Extern, false, false); in SynthMsgSendStretCallExpr()
4555 QualType FuncType; in convertFunctionTypeOfBlocks() local
4557 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks()
4558 else FuncType = QualType(FT, 0); in convertFunctionTypeOfBlocks()
4559 return FuncType; in convertFunctionTypeOfBlocks()
H A DRewriteObjC.cpp3722 QualType FuncType; in convertFunctionTypeOfBlocks() local
3726 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks()
3727 else FuncType = QualType(FT, 0); in convertFunctionTypeOfBlocks()
3728 return FuncType; in convertFunctionTypeOfBlocks()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp1229 FunctionType *FuncType = FunctionType::get(ReturnType, ParamTypes, IsVaArgs); in emitLibCall() local
1230 FunctionCallee Callee = M->getOrInsertFunction(FuncName, FuncType); in emitLibCall()