Home
last modified time | relevance | path

Searched refs:ExceptionSpecificationType (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DExceptionSpecificationType.h20 enum ExceptionSpecificationType { enum
35 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec()
39 inline bool isComputedNoexcept(ExceptionSpecificationType ESpecType) { in isComputedNoexcept()
44 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec()
49 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec()
53 inline bool isExplicitThrowExceptionSpec(ExceptionSpecificationType ESpecType) { in isExplicitThrowExceptionSpec()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp153 ExceptionSpecificationType ExceptionSpec) { in getExceptionSpecificationString()
156 case ExceptionSpecificationType::EST_None: in getExceptionSpecificationString()
158 case ExceptionSpecificationType::EST_DynamicNone: in getExceptionSpecificationString()
163 case ExceptionSpecificationType::EST_Dynamic: in getExceptionSpecificationString()
166 case ExceptionSpecificationType::EST_BasicNoexcept: in getExceptionSpecificationString()
169 case ExceptionSpecificationType::EST_DependentNoexcept: in getExceptionSpecificationString()
172 case ExceptionSpecificationType::EST_NoexceptFalse: in getExceptionSpecificationString()
178 case ExceptionSpecificationType::EST_NoexceptTrue: in getExceptionSpecificationString()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp85 ExceptionSpecificationType &EST) { in ActOnNoexceptSpec()
254 ExceptionSpecificationType EST = in exceptionSpecNotKnownYet()
551 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl()
552 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl()
783 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType(); in CheckExceptionSpecSubset()
784 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType(); in CheckExceptionSpecSubset()
H A DDeclSpec.cpp168 ExceptionSpecificationType in getFunction()
H A DSemaDeclCXX.cpp195 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl()
19367 bool IsTopLevel, ExceptionSpecificationType EST, in checkExceptionSpecification()
19416 Decl *D, ExceptionSpecificationType EST, SourceRange SpecificationRange, in actOnDelayedExceptionSpecification()
H A DSemaTemplateInstantiateDecl.cpp5345 ExceptionSpecificationType NewEST = EST_Uninstantiated; in InitFunctionInstantiation()
H A DTreeTransform.h6590 ExceptionSpecificationType EST = ESI.Type; in TransformExceptionSpec()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h224 esi.Type = ExceptionSpecificationType(asImpl().readUInt32()); in readExceptionSpecInfo()
H A DType.h1969 LLVM_PREFERRED_TYPE(ExceptionSpecificationType)
5234 ExceptionSpecificationType Type = EST_None;
5252 ExceptionSpecInfo(ExceptionSpecificationType EST) : Type(EST) {}
5381 getExceptionSpecSize(ExceptionSpecificationType EST, unsigned NumExceptions) {
5462 ExceptionSpecificationType getExceptionSpecType() const {
5463 return static_cast<ExceptionSpecificationType>(
H A DDecl.h2842 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DDeclarationFragments.h232 getExceptionSpecificationString(ExceptionSpecificationType ExceptionSpec);
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1379 LLVM_PREFERRED_TYPE(ExceptionSpecificationType)
1566 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType()
1567 return static_cast<ExceptionSpecificationType>(ExceptionSpecType); in getExceptionSpecType()
1722 ExceptionSpecificationType ESpecType,
H A DSema.h5414 ExceptionSpecificationType ComputedEST;
5431 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType()
5478 ExceptionSpecificationType EST,
5489 Decl *D, ExceptionSpecificationType EST, SourceRange SpecificationRange,
6569 ExceptionSpecificationType &EST);
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp3993 ExceptionSpecificationType Parser::tryParseExceptionSpecification( in tryParseExceptionSpecification()
3998 ExceptionSpecificationType Result = EST_None; in tryParseExceptionSpecification()
4055 ExceptionSpecificationType NoexceptType = EST_None; in tryParseExceptionSpecification()
4112 ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification( in ParseDynamicExceptionSpecification()
H A DParseCXXInlineMethods.cpp531 ExceptionSpecificationType EST in ParseLexedMethodDeclaration()
H A DParseExprCXX.cpp1390 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer()
H A DParseDecl.cpp7172 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp490 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec()
597 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2911 ExceptionSpecificationType tryParseExceptionSpecification(
2931 ExceptionSpecificationType
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13898 ExceptionSpecificationType EST1 = ESI1.Type, EST2 = ESI2.Type; in mergeExceptionSpecs()