Home | History | Annotate | Download | only in Frontend

Lines Matching defs:FuncType

321     void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
554 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
557 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
567 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
568 const PointerType *PT = funcType->getAs<PointerType>();
569 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2129 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2130 assert(funcType && "missing function type");
2131 proto = dyn_cast<FunctionProtoType>(funcType);
2301 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2302 const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(funcType);
3753 QualType FuncType;
3757 FuncType = getSimpleFunctionType(Res, ArgTypes);
3758 else FuncType = QualType(FT, 0);
3759 return FuncType;