Searched refs:ESpecType (Results 1 – 5 of 5) sorted by relevance
33 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument34 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()37 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument38 return ESpecType == EST_BasicNoexcept || ESpecType == EST_ComputedNoexcept; in isNoexceptExceptionSpec()41 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument42 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()
169 ESpecType, in getFunction() argument204 I.Fun.ExceptionSpecType = ESpecType; in getFunction()215 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()236 switch (ESpecType) { in getFunction()
1109 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local1115 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false, in ParseLambdaExpressionAfterIntroducer()1122 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()1154 ESpecType, ESpecRange, in ParseLambdaExpressionAfterIntroducer()
5488 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local5592 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()5598 if (ESpecType != EST_None) in ParseFunctionDeclarator()5631 ESpecType, ESpecRange, in ParseFunctionDeclarator()
1505 ExceptionSpecificationType ESpecType,