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

/external/clang/include/clang/Basic/
H A DExceptionSpecificationType.h33 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { argument
34 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny;
37 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { argument
38 return ESpecType == EST_BasicNoexcept || ESpecType == EST_ComputedNoexcept;
41 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { argument
42 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated;
/external/clang/lib/Sema/
H A DDeclSpec.cpp179 ESpecType,
214 I.Fun.ExceptionSpecType = ESpecType;
224 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow");
245 switch (ESpecType) {
162 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, SourceLocation ESpecLoc, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, CachedTokens *ExceptionSpecTokens, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType) argument
/external/clang/lib/Parse/
H A DParseExprCXX.cpp1108 ExceptionSpecificationType ESpecType = EST_None; local
1114 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false,
1121 if (ESpecType != EST_None)
1153 ESpecType, ESpecRange.getBegin(),
H A DParseDecl.cpp5288 ExceptionSpecificationType ESpecType = EST_None; local
5392 ESpecType = tryParseExceptionSpecification(Delayed,
5398 if (ESpecType != EST_None)
5431 ESpecType, ESpecRange.getBegin(),

Completed in 638 milliseconds