Searched refs:NumExceptions (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp168 unsigned NumExceptions,
199 I.Fun.NumExceptions = 0;
229 if (NumExceptions) {
230 I.Fun.NumExceptions = NumExceptions;
231 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
232 for (unsigned i = 0; i != NumExceptions; ++i) {
149 getFunction(bool hasProto, bool isAmbiguous, SourceLocation LParenLoc, ParamInfo *ArgInfo, unsigned NumArgs, SourceLocation EllipsisLoc, SourceLocation RParenLoc, unsigned TypeQuals, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation ConstQualifierLoc, SourceLocation VolatileQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceLocation ESpecLoc, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType) argument
H A DSemaExceptionSpec.cpp218 EPI.NumExceptions = OldProto->getNumExceptions();
H A DSemaLookup.cpp749 EPI.NumExceptions = 0;
H A DSemaTemplateInstantiateDecl.cpp3112 EPI.NumExceptions = Exceptions.size();
H A DSemaExprCXX.cpp2059 EPI.NumExceptions = 1;
H A DSemaType.cpp681 /*NumExceptions=*/0,
3011 unsigned N = FTI.NumExceptions;
H A DSemaDeclCXX.cpp12671 EPI.NumExceptions = Exceptions.size();
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2833 NumExceptions(0), Exceptions(0), NoexceptExpr(0),
2839 ExceptionSpecType(EST_None), RefQualifier(RQ_None), NumExceptions(0),
2849 unsigned NumExceptions; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
2875 /// NumExceptions - The number of types in the exception spec, if any.
2876 unsigned NumExceptions : 9;
2921 eh_end += NumExceptions;
2947 EPI.NumExceptions = NumExceptions;
2988 unsigned getNumExceptions() const { return NumExceptions; }
2990 assert(i < NumExceptions
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGException.cpp506 unsigned NumExceptions = Proto->getNumExceptions(); local
507 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
509 for (unsigned I = 0; I != NumExceptions; ++I) {
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp1595 NumArgs(args.size()), NumExceptions(epi.NumExceptions),
1620 for (unsigned i = 0, e = epi.NumExceptions; i != e; ++i) {
1735 for (unsigned i = 0; i != epi.NumExceptions; ++i)
H A DASTContext.cpp2839 CanonicalEPI.NumExceptions = 0;
2868 Size += EPI.NumExceptions * sizeof(QualType);
H A DASTImporter.cpp1632 ToEPI.NumExceptions = ExceptionTypes.size();
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1190 /// NumExceptions - This is the number of types in the dynamic-exception-
1192 unsigned NumExceptions; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1441 unsigned NumExceptions,
H A DSema.h3796 EPI.NumExceptions = size();
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp1979 proto_info.NumExceptions = 0;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp4679 EPI.NumExceptions = Record[Idx++];
4680 for (unsigned I = 0; I != EPI.NumExceptions; ++I)

Completed in 298 milliseconds