Searched refs:ESpecType (Results 1 - 5 of 5) 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.cpp160 ESpecType,
188 I.Fun.ExceptionSpecType = ESpecType;
216 switch (ESpecType) {
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/Parse/
H A DParseExprCXX.cpp783 ExceptionSpecificationType ESpecType = EST_None; local
788 ESpecType = tryParseExceptionSpecification(ESpecRange,
793 if (ESpecType != EST_None)
820 ESpecType, ESpecRange.getBegin(),
H A DParseDecl.cpp4564 ExceptionSpecificationType ESpecType = EST_None; local
4637 ESpecType = tryParseExceptionSpecification(ESpecRange,
4641 if (ESpecType != EST_None)
4669 ESpecType, ESpecRange.getBegin(),
/external/clang/include/clang/Sema/
H A DDeclSpec.h1373 ExceptionSpecificationType ESpecType,

Completed in 96 milliseconds