Searched defs:NumExceptions (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Sema/
H A DDeclSpec.cpp163 unsigned NumExceptions,
189 I.Fun.NumExceptions = 0;
217 if (NumExceptions) {
218 I.Fun.NumExceptions = NumExceptions;
219 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
220 for (unsigned i = 0; i != NumExceptions; ++i) {
147 getFunction(bool hasProto, bool isVariadic, SourceLocation EllipsisLoc, ParamInfo *ArgInfo, unsigned NumArgs, unsigned TypeQuals, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation ConstQualifierLoc, SourceLocation VolatileQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceLocation ESpecLoc, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, CachedTokens *ExceptionSpecTokens, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, ParsedType TrailingReturnType) argument
/external/clang/lib/CodeGen/
H A DCGException.cpp490 unsigned NumExceptions = Proto->getNumExceptions(); local
491 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
493 for (unsigned I = 0; I != NumExceptions; ++I) {
/external/clang/include/clang/Sema/
H A DDeclSpec.h1112 /// NumExceptions - This is the number of types in the dynamic-exception-
1114 unsigned NumExceptions; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1354 unsigned NumExceptions,
/external/clang/include/clang/AST/
H A DType.h2704 NumExceptions(0), Exceptions(0), NoexceptExpr(0),
2714 unsigned NumExceptions; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
2740 /// NumExceptions - The number of types in the exception spec, if any.
2741 unsigned NumExceptions : 9;
2781 eh_end += NumExceptions;
2804 EPI.NumExceptions = NumExceptions;
2843 unsigned getNumExceptions() const { return NumExceptions; }
2845 assert(i < NumExceptions && "Invalid exception number!");
2915 return exception_begin() + NumExceptions;
[all...]

Completed in 51 milliseconds