Searched refs:ESpecType (Results 1 – 5 of 5) sorted by relevance
35 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument36 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()39 inline bool isComputedNoexcept(ExceptionSpecificationType ESpecType) { in isComputedNoexcept() argument40 return ESpecType >= EST_DependentNoexcept && in isComputedNoexcept()41 ESpecType <= EST_NoexceptTrue; in isComputedNoexcept()44 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument45 return ESpecType == EST_BasicNoexcept || ESpecType == EST_NoThrow || in isNoexceptExceptionSpec()46 isComputedNoexcept(ESpecType); in isNoexceptExceptionSpec()49 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument50 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()[all …]
169 ESpecType, in getFunction() argument205 I.Fun.ExceptionSpecType = ESpecType; in getFunction()230 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()253 switch (ESpecType) { in getFunction()279 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
1390 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local1397 ESpecType = tryParseExceptionSpecification( in ParseLambdaExpressionAfterIntroducer()1401 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()1434 /*RefQualifierLoc=*/NoLoc, MutableLoc, ESpecType, in ParseLambdaExpressionAfterIntroducer()
7172 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local7278 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()7284 if (ESpecType != EST_None) in ParseFunctionDeclarator()7338 ESpecType, ESpecRange, DynamicExceptions.data(), in ParseFunctionDeclarator()
1722 ExceptionSpecificationType ESpecType,