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.cpp169 ESpecType,
204 I.Fun.ExceptionSpecType = ESpecType;
215 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow");
236 switch (ESpecType) {
152 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, SourceRange ESpecRange, 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.cpp1175 ExceptionSpecificationType ESpecType = EST_None; local
1181 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false,
1188 if (ESpecType != EST_None)
1220 ESpecType, ESpecRange,
H A DParseDecl.cpp5593 ExceptionSpecificationType ESpecType = EST_None; local
5697 ESpecType = tryParseExceptionSpecification(Delayed,
5703 if (ESpecType != EST_None)
5736 ESpecType, ESpecRange,

Completed in 144 milliseconds