Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 || ESpecType == EST_NoThrow || in isNoexceptExceptionSpec()
46 isComputedNoexcept(ESpecType); in isNoexceptExceptionSpec()
49 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument
50 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp172 ESpecType, in getFunction() argument
208 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
233 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()
256 switch (ESpecType) { in getFunction()
282 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp1530 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local
1537 ESpecType = tryParseExceptionSpecification( in ParseLambdaExpressionAfterIntroducer()
1541 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()
1574 /*RefQualifierLoc=*/NoLoc, MutableLoc, ESpecType, in ParseLambdaExpressionAfterIntroducer()
H A DParseDecl.cpp7511 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local
7617 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()
7623 if (ESpecType != EST_None) in ParseFunctionDeclarator()
7677 ESpecType, ESpecRange, DynamicExceptions.data(), in ParseFunctionDeclarator()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1720 ExceptionSpecificationType ESpecType,