Searched refs:FunctionTy (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Ddebuginfo.c114 LLVMMetadataRef FunctionTy = local
129 File, 42, FunctionTy, true, true,
/netbsd-current/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DMachOUtils.cpp138 template <typename FunctionTy>
140 FunctionTy Handler) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBlocks.cpp1956 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); local
1960 FunctionTy, nullptr, SC_Static, false, false);
2150 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); local
2154 FunctionTy, nullptr, SC_Static, false, false);
2404 QualType FunctionTy = Context.getFunctionType(ReturnTy, ArgTys, {}); local
2408 SourceLocation(), II, FunctionTy, nullptr, SC_Static, false, false);
2479 QualType FunctionTy = Context.getFunctionType(R, ArgTys, {}); local
2483 SourceLocation(), II, FunctionTy, nullptr, SC_Static, false, false);
H A DCGObjC.cpp3690 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {});
3694 FunctionTy, nullptr, SC_Static, false, false);
3774 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {});
3778 FunctionTy, nullptr, SC_Static, false, false);
H A DItaniumCXXABI.cpp2617 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, {}); local
2620 &Ctx.Idents.get(FnName), FunctionTy, nullptr, SC_Static, false, false);
H A DCGStmtOpenMP.cpp446 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, EPI); local
449 SourceLocation(), DeclarationName(), FunctionTy,
450 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static,
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h1022 LLVMTypeRef FunctionTy);
1251 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
1256 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
1261 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
1271 * @param FunctionTy The function type to operate on.
1274 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp683 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { argument
684 return unwrap<FunctionType>(FunctionTy)->isVarArg();
687 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { argument
688 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
691 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { argument
692 return unwrap<FunctionType>(FunctionTy)->getNumParams();
695 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { argument
696 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
2317 LLVMTypeRef FunctionTy) {
2318 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp1475 // using FunctionTy & Loc and get its TypeLoc as a FunctionProtoTypeLoc
1535 QualType FunctionTy = S.getLambdaConversionFunctionResultType( local
1537 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy);

Completed in 398 milliseconds