Home
last modified time | relevance | path

Searched refs:ESpecType (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DExceptionSpecificationType.h35 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument
36 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()
39 inline bool isComputedNoexcept(ExceptionSpecificationType ESpecType) { in isComputedNoexcept() argument
40 return ESpecType >= EST_DependentNoexcept && in isComputedNoexcept()
41 ESpecType <= EST_NoexceptTrue; in isComputedNoexcept()
44 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument
45 return ESpecType == EST_BasicNoexcept || isComputedNoexcept(ESpecType); in isNoexceptExceptionSpec()
48 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument
49 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp163 ESpecType, in getFunction() argument
196 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
220 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()
243 switch (ESpecType) { in getFunction()
269 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp1169 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local
1175 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false, in ParseLambdaExpressionAfterIntroducer()
1182 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()
1210 /*RefQualifierLoc=*/NoLoc, MutableLoc, ESpecType, in ParseLambdaExpressionAfterIntroducer()
H A DParseDecl.cpp6075 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local
6187 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()
6193 if (ESpecType != EST_None) in ParseFunctionDeclarator()
6238 ESpecType, ESpecRange, DynamicExceptions.data(), in ParseFunctionDeclarator()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1600 ExceptionSpecificationType ESpecType,