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()
163 ESpecType, in getFunction() argument196 I.Fun.ExceptionSpecType = ESpecType; in getFunction()224 switch (ESpecType) { in getFunction()
949 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local954 ESpecType = tryParseExceptionSpecification(ESpecRange, in ParseLambdaExpressionAfterIntroducer()959 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()991 ESpecType, ESpecRange.getBegin(), in ParseLambdaExpressionAfterIntroducer()
4982 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local5073 ESpecType = tryParseExceptionSpecification(ESpecRange, in ParseFunctionDeclarator()5077 if (ESpecType != EST_None) in ParseFunctionDeclarator()5109 ESpecType, ESpecRange.getBegin(), in ParseFunctionDeclarator()
1414 ExceptionSpecificationType ESpecType,