Home
last modified time | relevance | path

Searched refs:ExceptionType (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/AST/
DType.cpp2699 for (QualType ExceptionType : epi.ExceptionSpec.Exceptions) { in FunctionProtoType() local
2702 if (ExceptionType->isInstantiationDependentType()) in FunctionProtoType()
2705 if (ExceptionType->containsUnexpandedParameterPack()) in FunctionProtoType()
2708 exnSlot[I++] = ExceptionType; in FunctionProtoType()
DASTImporter.cpp1656 QualType ExceptionType = Importer.Import(E); in VisitFunctionProtoType() local
1657 if (ExceptionType.isNull()) in VisitFunctionProtoType()
1659 ExceptionTypes.push_back(ExceptionType); in VisitFunctionProtoType()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp4480 QualType ExceptionType = TInfo->getType(); in ActOnObjCExceptionDecl() local
4482 VarDecl *New = BuildObjCExceptionDecl(TInfo, ExceptionType, in ActOnObjCExceptionDecl()
/external/clang/include/clang/Sema/
DSema.h3434 VarDecl *BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType ExceptionType,
/external/clang/test/Analysis/
Dgenerics.m70 @interface ExceptionalArray<ExceptionType> : MutableArray<NSString *>
71 - (ExceptionType) getException;