| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | ExceptionSpecificationType.h | 21 EST_None, ///< no exception specification enumerator
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaExceptionSpec.cpp | 377 ESI.Type = EST_None; in CheckEquivalentExceptionSpec() 454 case EST_None: in CheckEquivalentExceptionSpec() 575 ((OldEST == EST_None && NewEST == EST_NoexceptFalse) || in CheckEquivalentExceptionSpecImpl() 576 (OldEST == EST_NoexceptFalse && NewEST == EST_None))) { in CheckEquivalentExceptionSpecImpl() 623 if (OldEST == EST_None && NewEST == EST_Dynamic) in CheckEquivalentExceptionSpecImpl() 625 else if (OldEST == EST_Dynamic && NewEST == EST_None) in CheckEquivalentExceptionSpecImpl() 645 if (MissingExceptionSpecification && OldEST != EST_None && in CheckEquivalentExceptionSpecImpl() 646 NewEST == EST_None) { in CheckEquivalentExceptionSpecImpl()
|
| H A D | DeclSpec.cpp | 282 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 4587 UpdateExceptionSpec(Decl, EST_None); in InstantiateExceptionSpec() 4594 UpdateExceptionSpec(Decl, EST_None); in InstantiateExceptionSpec() 4612 UpdateExceptionSpec(Decl, EST_None); in InstantiateExceptionSpec() 4672 EPI.ExceptionSpec.Type != EST_None && in InitFunctionInstantiation()
|
| H A D | SemaDeclCXX.cpp | 190 if (ComputedEST == EST_None) in CalledDecl() 193 if (EST == EST_None && Method->hasAttr<NoThrowAttr>()) in CalledDecl() 204 case EST_None: in CalledDecl() 212 ComputedEST = EST_None; in CalledDecl() 234 assert(ComputedEST != EST_None && in CalledDecl() 269 ComputedEST = EST_None; in CalledStmt() 8832 if (FD->getExceptionSpecType() == EST_None) { in CheckExplicitlyDefaultedComparison() 18329 case EST_None: in checkThisInStaticMemberFunctionExceptionSpec()
|
| H A D | SemaTemplateInstantiate.cpp | 2567 ESI.Type = EST_None; in SubstExceptionSpec()
|
| H A D | SemaType.cpp | 758 /*MutableLoc=*/NoLoc, EST_None, in maybeSynthesizeBlockSignature() 7813 case EST_None: in handleFunctionTypeAttr()
|
| H A D | SemaLookup.cpp | 1182 EPI.ExceptionSpec = EST_None; in LookupDirect()
|
| H A D | SemaDecl.cpp | 15962 /*MutableLoc=*/NoLoc, EST_None, in ImplicitlyDefineFunction() 16221 if (!FPT || FPT->getExceptionSpecType() == EST_None) in AddKnownFunctionAttributes()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 1425 case EST_None: in destroy() 1508 assert(ExceptionSpecType != EST_None); in getNumExceptions() 1515 assert(ExceptionSpecType == EST_None); in getDeclsInPrototype()
|
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 3872 ExceptionSpecificationType Result = EST_None; in tryParseExceptionSpecification() 3878 return EST_None; in tryParseExceptionSpecification() 3929 ExceptionSpecificationType NoexceptType = EST_None; in tryParseExceptionSpecification() 3951 if (Result == EST_None) { in tryParseExceptionSpecification()
|
| H A D | ParseExprCXX.cpp | 1397 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() 1407 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()
|
| H A D | ParseExpr.cpp | 3619 /*MutableLoc=*/NoLoc, EST_None, in ParseBlockLiteralExpression()
|
| H A D | ParseDecl.cpp | 6849 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() 6953 if (ESpecType != EST_None) in ParseFunctionDeclarator()
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CXType.cpp | 759 case EST_None: in getExternalExceptionSpecificationKind()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ASTContext.cpp | 3223 hasSameType(getFunctionTypeWithExceptionSpec(T, EST_None), in hasSameFunctionTypeIgnoringExceptionSpec() 3224 getFunctionTypeWithExceptionSpec(U, EST_None))); in hasSameFunctionTypeIgnoringExceptionSpec() 4359 if (ESI.Type == EST_None) in isCanonicalExceptionSpecification() 4462 case EST_None: case EST_MSAny: case EST_NoexceptFalse: in getFunctionTypeInternal() 4463 CanonicalEPI.ExceptionSpec.Type = EST_None; in getFunctionTypeInternal() 4476 CanonicalEPI.ExceptionSpec.Type = EST_None; in getFunctionTypeInternal() 12468 for (auto I : {EST_None, EST_MSAny, EST_NoexceptFalse}) { in mergeExceptionSpecs() 12498 case EST_None: in mergeExceptionSpecs()
|
| H A D | JSONNodeDumper.cpp | 600 case EST_None: break; in VisitFunctionProtoType()
|
| H A D | Type.cpp | 3356 case EST_None: in canThrow()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Type.h | 4080 ExceptionSpecificationType Type = EST_None; 4187 case EST_None: 4263 bool hasExceptionSpec() const { return getExceptionSpecType() != EST_None; }
|
| H A D | Decl.h | 2666 return FPT ? FPT->getExceptionSpecType() : EST_None; in getExceptionSpecType()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 947 FD->getType(), EST_None); in StartFunction()
|
| H A D | CodeGenModule.cpp | 1725 FnType->getExtProtoInfo().withExceptionSpec(EST_None)); in CreateKCFITypeId() 6936 FnType->getExtProtoInfo().withExceptionSpec(EST_None)); in CreateMetadataIdentifierImpl()
|
| H A D | ItaniumCXXABI.cpp | 4124 Type = Ctx.getFunctionTypeWithExceptionSpec(Type, EST_None); in extractPBaseFlags()
|
| H A D | CGExpr.cpp | 5325 getContext().getFunctionTypeWithExceptionSpec(PointeeType, EST_None); in EmitCall()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2235 proto_info.ExceptionSpec = EST_None; in CreateFunctionType()
|