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()
1175 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local1181 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false, in ParseLambdaExpressionAfterIntroducer()1188 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()1220 ESpecType, ESpecRange, in ParseLambdaExpressionAfterIntroducer()
5593 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local5697 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()5703 if (ESpecType != EST_None) in ParseFunctionDeclarator()5736 ESpecType, ESpecRange, in ParseFunctionDeclarator()
1539 ExceptionSpecificationType ESpecType,