| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | ExceptionSpecificationType.h | 21 EST_None, ///< no exception specification enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExceptionSpec.cpp | 383 ESI.Type = EST_None; in CheckEquivalentExceptionSpec() 460 case EST_None: in CheckEquivalentExceptionSpec() 581 ((OldEST == EST_None && NewEST == EST_NoexceptFalse) || in CheckEquivalentExceptionSpecImpl() 582 (OldEST == EST_NoexceptFalse && NewEST == EST_None))) { in CheckEquivalentExceptionSpecImpl() 629 if (OldEST == EST_None && NewEST == EST_Dynamic) in CheckEquivalentExceptionSpecImpl() 631 else if (OldEST == EST_Dynamic && NewEST == EST_None) in CheckEquivalentExceptionSpecImpl() 651 if (MissingExceptionSpecification && OldEST != EST_None && in CheckEquivalentExceptionSpecImpl() 652 NewEST == EST_None) { in CheckEquivalentExceptionSpecImpl()
|
| H A D | DeclSpec.cpp | 282 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 4683 UpdateExceptionSpec(Decl, EST_None); in InstantiateExceptionSpec() 4690 UpdateExceptionSpec(Decl, EST_None); in InstantiateExceptionSpec() 4709 UpdateExceptionSpec(Decl, EST_None); in InstantiateExceptionSpec() 4765 EPI.ExceptionSpec.Type != EST_None && in InitFunctionInstantiation()
|
| H A D | SemaDeclCXX.cpp | 197 if (ComputedEST == EST_None) in CalledDecl() 200 if (EST == EST_None && Method->hasAttr<NoThrowAttr>()) in CalledDecl() 211 case EST_None: in CalledDecl() 219 ComputedEST = EST_None; in CalledDecl() 241 assert(ComputedEST != EST_None && in CalledDecl() 276 ComputedEST = EST_None; in CalledStmt() 9118 if (FD->getExceptionSpecType() == EST_None) { in CheckExplicitlyDefaultedComparison() 19027 case EST_None: in checkThisInStaticMemberFunctionExceptionSpec()
|
| H A D | SemaTemplateInstantiate.cpp | 2758 ESI.Type = EST_None; in SubstExceptionSpec()
|
| H A D | SemaType.cpp | 775 /*MutableLoc=*/NoLoc, EST_None, in maybeSynthesizeBlockSignature() 8179 case EST_None: in handleFunctionTypeAttr()
|
| H A D | SemaLookup.cpp | 1196 EPI.ExceptionSpec = EST_None; in LookupDirect()
|
| H A D | SemaDecl.cpp | 16560 /*MutableLoc=*/NoLoc, EST_None, in ImplicitlyDefineFunction() 16824 if (!FPT || FPT->getExceptionSpecType() == EST_None) in AddKnownFunctionAttributes()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 1441 case EST_None: in destroy() 1524 assert(ExceptionSpecType != EST_None); in getNumExceptions() 1531 assert(ExceptionSpecType == EST_None); in getDeclsInPrototype()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 3932 ExceptionSpecificationType Result = EST_None; in tryParseExceptionSpecification() 3938 return EST_None; in tryParseExceptionSpecification() 3989 ExceptionSpecificationType NoexceptType = EST_None; in tryParseExceptionSpecification() 4015 if (Result == EST_None) { in tryParseExceptionSpecification()
|
| H A D | ParseExprCXX.cpp | 1445 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() 1456 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()
|
| H A D | ParseExpr.cpp | 3739 /*MutableLoc=*/NoLoc, EST_None, in ParseBlockLiteralExpression()
|
| H A D | ParseDecl.cpp | 7081 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() 7185 if (ESpecType != EST_None) in ParseFunctionDeclarator()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 3184 hasSameType(getFunctionTypeWithExceptionSpec(T, EST_None), in hasSameFunctionTypeIgnoringExceptionSpec() 3185 getFunctionTypeWithExceptionSpec(U, EST_None))); in hasSameFunctionTypeIgnoringExceptionSpec() 4336 if (ESI.Type == EST_None) in isCanonicalExceptionSpecification() 4439 case EST_None: case EST_MSAny: case EST_NoexceptFalse: in getFunctionTypeInternal() 4440 CanonicalEPI.ExceptionSpec.Type = EST_None; in getFunctionTypeInternal() 4453 CanonicalEPI.ExceptionSpec.Type = EST_None; in getFunctionTypeInternal() 12610 for (auto I : {EST_None, EST_MSAny, EST_NoexceptFalse}) { in mergeExceptionSpecs() 12640 case EST_None: in mergeExceptionSpecs()
|
| H A D | JSONNodeDumper.cpp | 638 case EST_None: break; in VisitFunctionProtoType()
|
| H A D | TextNodeDumper.cpp | 1668 case EST_None: in VisitFunctionProtoType()
|
| H A D | Type.cpp | 3618 case EST_None: in canThrow()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 132 case ExceptionSpecificationType::EST_None: in getExceptionSpecificationString()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Type.h | 4248 ExceptionSpecificationType Type = EST_None; 4377 case EST_None: 4460 bool hasExceptionSpec() const { return getExceptionSpecType() != EST_None; }
|
| H A D | Decl.h | 2742 return FPT ? FPT->getExceptionSpecType() : EST_None; in getExceptionSpecType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 576 Ty = getContext().getFunctionTypeWithExceptionSpec(Ty, EST_None); in getUBSanFunctionTypeHash()
|
| H A D | CodeGenModule.cpp | 2120 FnType->getExtProtoInfo().withExceptionSpec(EST_None)); in CreateKCFITypeId() 7367 FnType->getExtProtoInfo().withExceptionSpec(EST_None)); in CreateMetadataIdentifierImpl()
|
| H A D | ItaniumCXXABI.cpp | 4198 Type = Ctx.getFunctionTypeWithExceptionSpec(Type, EST_None); in extractPBaseFlags()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2242 proto_info.ExceptionSpec = EST_None; in CreateFunctionType()
|