Searched refs:ESpecType (Results 1 – 5 of 5) sorted by relevance
32 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument33 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()36 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument37 return ESpecType == EST_BasicNoexcept || ESpecType == EST_ComputedNoexcept; in isNoexceptExceptionSpec()40 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument41 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()
162 ESpecType, in getFunction() argument192 I.Fun.ExceptionSpecType = ESpecType; in getFunction()220 switch (ESpecType) { in getFunction()
828 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local833 ESpecType = tryParseExceptionSpecification(ESpecRange, in ParseLambdaExpressionAfterIntroducer()838 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()870 ESpecType, ESpecRange.getBegin(), in ParseLambdaExpressionAfterIntroducer()
4764 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local4852 ESpecType = tryParseExceptionSpecification(ESpecRange, in ParseFunctionDeclarator()4856 if (ESpecType != EST_None) in ParseFunctionDeclarator()4888 ESpecType, ESpecRange.getBegin(), in ParseFunctionDeclarator()
1394 ExceptionSpecificationType ESpecType,