Home
last modified time | relevance | path

Searched refs:FunctionTy (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm-c/
DCore.h587 LLVMTypeRef FunctionTy);
807 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
812 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
817 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
830 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/external/llvm/tools/dsymutil/
DMachOUtils.cpp123 template <typename FunctionTy>
125 FunctionTy Handler) { in iterateOnSegments()
/external/llvm/lib/IR/
DCore.cpp406 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
407 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
410 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
411 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
414 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
415 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
418 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
419 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
1655 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
1656 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/external/clang/lib/Sema/
DSemaLambda.cpp1337 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local
1339 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp406 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local
409 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()