Searched refs:ESpecType (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | ExceptionSpecificationType.h | 35 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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | DeclSpec.cpp | 171 ESpecType, in getFunction() argument 207 I.Fun.ExceptionSpecType = ESpecType; in getFunction() 232 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction() 255 switch (ESpecType) { in getFunction() 281 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseExprCXX.cpp | 1344 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local 1350 ESpecType = tryParseExceptionSpecification( in ParseLambdaExpressionAfterIntroducer() 1354 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer() 1387 /*RefQualifierLoc=*/NoLoc, MutableLoc, ESpecType, ESpecRange, in ParseLambdaExpressionAfterIntroducer()
|
| H A D | ParseDecl.cpp | 6506 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local 6602 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator() 6608 if (ESpecType != EST_None) in ParseFunctionDeclarator() 6654 ESpecType, ESpecRange, DynamicExceptions.data(), in ParseFunctionDeclarator()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 1633 ExceptionSpecificationType ESpecType,
|