Searched defs:FnTy (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp25 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false); local
27 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp843 llvm::DIType FnTy local
849 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
/external/clang/lib/Sema/
H A DSemaType.cpp1972 static std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy){ argument
1974 Qualifiers::fromCVRMask(FnTy->getTypeQuals()).getAsString();
1976 switch (FnTy->getRefQualifier()) {
2475 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>(); local
2476 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
2502 !(FnTy->getTypeQuals() & DeclSpec::TQ_const)) {
2504 FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
2506 T = Context.getFunctionType(FnTy->getResultType(),
2507 FnTy->arg_type_begin(),
2508 FnTy
[all...]
H A DSemaOverload.cpp8091 const FunctionProtoType *FnTy = Fn->getType()->getAs<FunctionProtoType>(); local
8110 if (MinParams != FnTy->getNumArgs() ||
8111 FnTy->isVariadic() || FnTy->isTemplateVariadic())
8120 if (MinParams != FnTy->getNumArgs())
8124 modeCount = FnTy->getNumArgs();

Completed in 65 milliseconds