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

/external/clang/lib/Sema/
H A DDeclSpec.cpp164 unsigned NumExceptions,
190 I.Fun.NumExceptions = 0;
220 if (NumExceptions) {
221 I.Fun.NumExceptions = NumExceptions;
222 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
223 for (unsigned i = 0; i != NumExceptions; ++i) {
147 getFunction(bool hasProto, bool isVariadic, bool isAmbiguous, 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, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType) argument
/external/clang/lib/CodeGen/
H A DCGException.cpp502 unsigned NumExceptions = Proto->getNumExceptions(); local
503 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
505 for (unsigned I = 0; I != NumExceptions; ++I) {
/external/clang/include/clang/Sema/
H A DDeclSpec.h1137 /// NumExceptions - This is the number of types in the dynamic-exception-
1139 unsigned NumExceptions; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1377 unsigned NumExceptions,
/external/clang/include/clang/AST/
H A DType.h2743 NumExceptions(0), Exceptions(0), NoexceptExpr(0),
2753 unsigned NumExceptions; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
2779 /// NumExceptions - The number of types in the exception spec, if any.
2780 unsigned NumExceptions : 9;
2820 eh_end += NumExceptions;
2843 EPI.NumExceptions = NumExceptions;
2884 unsigned getNumExceptions() const { return NumExceptions; }
2886 assert(i < NumExceptions && "Invalid exception number!");
2958 return exception_begin() + NumExceptions;
[all...]

Completed in 462 milliseconds