Searched refs:funcType (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp313 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
544 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType, argument
547 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
557 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) { argument
558 const PointerType *PT = funcType->getAs<PointerType>();
559 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2123 const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); local
2124 assert(funcType && "missing function type");
2125 proto = dyn_cast<FunctionProtoType>(funcType);
2294 const FunctionType *funcType local
[all...]
H A DRewriteModernObjC.cpp385 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
608 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType, argument
611 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
621 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) { argument
622 const PointerType *PT = funcType->getAs<PointerType>();
623 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2205 const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); local
2206 assert(funcType && "missing function type");
2207 proto = dyn_cast<FunctionProtoType>(funcType);
2380 const FunctionType *funcType local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DType.cpp1245 QualType VisitFunctionType(const FunctionType *funcType) { argument
1250 QualType returnType = funcType->getReturnType().substObjCTypeArgs(
1257 if (isa<FunctionNoProtoType>(funcType)) {
1260 funcType->getReturnType().getAsOpaquePtr())
1261 return BaseType::VisitFunctionType(funcType);
1264 return Ctx.getFunctionNoProtoType(returnType, funcType->getExtInfo());
1267 const auto *funcProtoType = cast<FunctionProtoType>(funcType);
1310 return BaseType::VisitFunctionType(funcType);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp814 FunctionType *funcType = local
824 funcType, GlobalValue::InternalLinkage, oldFunction->getAddressSpace(),

Completed in 268 milliseconds