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

/external/clang/lib/Sema/
H A DDeclSpec.cpp167 unsigned NumExceptions,
198 I.Fun.NumExceptions = 0;
228 if (NumExceptions) {
229 I.Fun.NumExceptions = NumExceptions;
230 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
231 for (unsigned i = 0; i != NumExceptions; ++i) {
148 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
/external/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) {
/external/clang/include/clang/Sema/
H A DDeclSpec.h1167 /// NumExceptions - This is the number of types in the dynamic-exception-
1169 unsigned NumExceptions; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1418 unsigned NumExceptions,
/external/clang/include/clang/AST/
H A DType.h2825 NumExceptions(0), Exceptions(0), NoexceptExpr(0),
2835 unsigned NumExceptions; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
2861 /// NumExceptions - The number of types in the exception spec, if any.
2862 unsigned NumExceptions : 9;
2907 eh_end += NumExceptions;
2933 EPI.NumExceptions = NumExceptions;
2974 unsigned getNumExceptions() const { return NumExceptions; }
2976 assert(i < NumExceptions && "Invalid exception number!");
3048 return exception_begin() + NumExceptions;
[all...]

Completed in 113 milliseconds