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()
179 ESpecType, in getFunction() argument214 I.Fun.ExceptionSpecType = ESpecType; in getFunction()224 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()245 switch (ESpecType) { in getFunction()
1108 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local1114 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false, in ParseLambdaExpressionAfterIntroducer()1121 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()1153 ESpecType, ESpecRange.getBegin(), in ParseLambdaExpressionAfterIntroducer()
5288 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local5392 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()5398 if (ESpecType != EST_None) in ParseFunctionDeclarator()5431 ESpecType, ESpecRange.getBegin(), in ParseFunctionDeclarator()
1475 ExceptionSpecificationType ESpecType,