Home | History | Annotate | Download | only in Frontend

Lines Matching refs:funcType

320     void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
546 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
549 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
560 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
561 const PointerType *PT = funcType->getAs<PointerType>();
562 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2157 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2158 assert(funcType && "missing function type");
2159 proto = dyn_cast<FunctionProtoType>(funcType);
2329 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2330 const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(funcType);
3800 QualType FuncType;
3804 FuncType = getSimpleFunctionType(Res, ArgTypes);
3805 else FuncType = QualType(FT, 0);
3806 return FuncType;