Searched defs:FunctionTy (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Sema/
H A DSemaLambda.cpp615 QualType FunctionTy; local
619 FunctionTy = S.Context.getFunctionType(Proto->getResultType(),
623 FunctionPtrTy = S.Context.getPointerType(FunctionTy);
655 DeclarationNameInfo(Name, Loc), FunctionTy,
690 QualType FunctionTy local
695 BlockPtrTy = S.Context.getBlockPointerType(FunctionTy);
810 QualType FunctionTy local
815 CallOperator->setType(FunctionTy);
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp233 llvm::FunctionType *FunctionTy = local
236 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn);
/external/llvm/lib/VMCore/
H A DCore.cpp299 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { argument
300 return unwrap<FunctionType>(FunctionTy)->isVarArg();
303 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { argument
304 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
307 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { argument
308 return unwrap<FunctionType>(FunctionTy)->getNumParams();
311 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { argument
312 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
1295 LLVMTypeRef FunctionTy) {
1296 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
1294 LLVMAddFunction(LLVMModuleRef M, const char *Name, LLVMTypeRef FunctionTy) argument
[all...]

Completed in 90 milliseconds