Home | History | Annotate | Download | only in Frontend

Lines Matching refs:FuncType

396     void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
623 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
626 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
636 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
637 const PointerType *PT = funcType->getAs<PointerType>();
638 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2240 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2241 assert(funcType && "missing function type");
2242 proto = dyn_cast<FunctionProtoType>(funcType);
2415 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2416 const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(funcType);
4671 QualType FuncType;
4673 FuncType = getSimpleFunctionType(Res, ArgTypes);
4674 else FuncType = QualType(FT, 0);
4675 return FuncType;