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

/external/clang/include/clang/Basic/
H A DExceptionSpecificationType.h32 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { argument
33 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny;
36 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { argument
37 return ESpecType == EST_BasicNoexcept || ESpecType == EST_ComputedNoexcept;
40 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { argument
41 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated;
/external/clang/lib/Sema/
H A DDeclSpec.cpp164 ESpecType,
197 I.Fun.ExceptionSpecType = ESpecType;
225 switch (ESpecType) {
149 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 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/Parse/
H A DParseExprCXX.cpp1048 ExceptionSpecificationType ESpecType = EST_None; local
1053 ESpecType = tryParseExceptionSpecification(ESpecRange,
1058 if (ESpecType != EST_None)
1090 ESpecType, ESpecRange.getBegin(),
H A DParseDecl.cpp5081 ExceptionSpecificationType ESpecType = EST_None; local
5172 ESpecType = tryParseExceptionSpecification(ESpecRange,
5176 if (ESpecType != EST_None)
5208 ESpecType, ESpecRange.getBegin(),

Completed in 98 milliseconds