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 697 QualType FunctionTy;
701 FunctionTy =
706 FunctionPtrTy = S.Context.getPointerType(FunctionTy);
739 DeclarationNameInfo(Name, Loc), FunctionTy,
774 QualType FunctionTy
779 BlockPtrTy = S.Context.getBlockPointerType(FunctionTy);
    [all...]
  /external/llvm/include/llvm-c/
Core.h 549 LLVMTypeRef FunctionTy);
752 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
757 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
762 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
772 * @param FunctionTy The function type to operate on.
775 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
    [all...]
  /external/llvm/lib/IR/
Core.cpp 306 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
307 return unwrap<FunctionType>(FunctionTy)->isVarArg();
310 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
311 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
314 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
315 return unwrap<FunctionType>(FunctionTy)->getNumParams();
318 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
319 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 260 llvm::FunctionType *FunctionTy =
263 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn);
    [all...]

Completed in 188 milliseconds