HomeSort by relevance Sort by last modified time
    Searched refs:FunctionTy (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Sema/
SemaLambda.cpp 814 QualType FunctionTy;
818 FunctionTy = S.Context.getFunctionType(Proto->getResultType(),
820 FunctionPtrTy = S.Context.getPointerType(FunctionTy);
    [all...]
  /external/llvm/include/llvm-c/
Core.h 596 LLVMTypeRef FunctionTy);
799 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
804 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
809 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
819 * @param FunctionTy The function type to operate on.
822 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
    [all...]
  /external/llvm/lib/IR/
Core.cpp 312 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
313 return unwrap<FunctionType>(FunctionTy)->isVarArg();
316 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
317 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
320 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
321 return unwrap<FunctionType>(FunctionTy)->getNumParams();
324 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
325 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 297 llvm::FunctionType *FunctionTy =
300 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn);
    [all...]

Completed in 153 milliseconds