Searched defs:NumExceptions (Results 1 - 3 of 3) 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
/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,

Completed in 192 milliseconds