Searched refs:FunctionTy (Results 1 – 2 of 2) sorted by relevance
1003 LLVMTypeRef FunctionTy);1226 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);1231 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);1236 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);1249 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
649 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument650 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()653 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument654 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()657 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument658 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()661 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument662 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()2255 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument2256 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()