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

/external/clang/lib/Sema/
H A DDeclSpec.cpp173 unsigned NumExceptions,
207 I.Fun.NumExceptions = 0;
240 if (NumExceptions) {
241 I.Fun.NumExceptions = NumExceptions;
242 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
243 for (unsigned i = 0; i != NumExceptions; ++i) {
152 getFunction(bool hasProto, bool isAmbiguous, SourceLocation LParenLoc, ParamInfo *Params, unsigned NumParams, SourceLocation EllipsisLoc, SourceLocation RParenLoc, unsigned TypeQuals, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation ConstQualifierLoc, SourceLocation VolatileQualifierLoc, SourceLocation RestrictQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceRange ESpecRange, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, CachedTokens *ExceptionSpecTokens, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType) argument
H A DSemaTemplateVariadic.cpp775 for (unsigned i = 0; i != Chunk.Fun.NumExceptions; ++i) {
H A DSemaType.cpp717 /*NumExceptions=*/0,
4293 unsigned N = FTI.NumExceptions;
/external/clang/lib/CodeGen/
H A DCGException.cpp452 unsigned NumExceptions = Proto->getNumExceptions(); local
453 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
455 for (unsigned I = 0; I != NumExceptions; ++I) {
/external/clang/include/clang/Sema/
H A DDeclSpec.h1249 /// NumExceptions - This is the number of types in the dynamic-exception-
1251 unsigned NumExceptions; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1543 unsigned NumExceptions,
/external/clang/include/clang/AST/
H A DType.h3213 unsigned NumExceptions : 9;
3334 unsigned getNumExceptions() const { return NumExceptions; }
3336 assert(i < NumExceptions && "Invalid exception number!");
3414 return exception_begin() + NumExceptions;
/external/clang/lib/AST/
H A DType.cpp2663 NumExceptions(epi.ExceptionSpec.Exceptions.size()),
2785 for (unsigned I = 0, N = NumExceptions; I != N; ++I)

Completed in 593 milliseconds