Home
last modified time | relevance | path

Searched refs:getExceptionSpecType (Results 1 – 25 of 30) sorted by relevance

12

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExceptionSpec.cpp211 if (FPT->getExceptionSpecType() == EST_Unparsed) { in ResolveExceptionSpec()
216 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in ResolveExceptionSpec()
224 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType())) in ResolveExceptionSpec()
228 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated) in ResolveExceptionSpec()
235 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) { in ResolveExceptionSpec()
259 auto EST = MD->getType()->castAs<FunctionProtoType>()->getExceptionSpecType(); in exceptionSpecNotKnownYet()
369 FunctionProtoType::ExceptionSpecInfo ESI = OldProto->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
419 switch (OldProto->getExceptionSpecType()) { in CheckEquivalentExceptionSpec()
555 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl()
556 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl()
[all …]
H A DSemaTemplateVariadic.cpp943 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) { in containsUnexpandedParameterPacks()
950 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) && in containsUnexpandedParameterPacks()
H A DSemaType.cpp5352 if (IsTypedefName && FTI.getExceptionSpecType() && !LangOpts.CPlusPlus17) in GetFullTypeForDeclarator()
5522 if (FTI.getExceptionSpecType() == EST_Dynamic) { in GetFullTypeForDeclarator()
5532 } else if (isComputedNoexcept(FTI.getExceptionSpecType())) { in GetFullTypeForDeclarator()
5537 FTI.getExceptionSpecType(), in GetFullTypeForDeclarator()
7812 switch (Proto->getExceptionSpecType()) { in handleFunctionTypeAttr()
H A DSemaExprMember.cpp928 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in BuildMemberExpr()
H A DSemaDeclCXX.cpp187 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl()
7434 if (FPT->getExceptionSpecType() != EST_Unevaluated) in EvaluateImplicitExceptionSpec()
8832 if (FD->getExceptionSpecType() == EST_None) { in CheckExplicitlyDefaultedComparison()
18321 switch (Proto->getExceptionSpecType()) { in checkThisInStaticMemberFunctionExceptionSpec()
H A DSemaTemplateDeduction.cpp4370 isUnresolvedExceptionSpec(SpecializationFPT->getExceptionSpecType()) && in DeduceTemplateArguments()
H A DSemaTemplateInstantiateDecl.cpp4579 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h4215 return getExceptionSpecSize(getExceptionSpecType(), getNumExceptions());
4220 assert((getExceptionSpecType() != EST_Dynamic ||
4257 ExceptionSpecificationType getExceptionSpecType() const {
4263 bool hasExceptionSpec() const { return getExceptionSpecType() != EST_None; }
4267 return isDynamicExceptionSpec(getExceptionSpecType());
4272 return isNoexceptExceptionSpec(getExceptionSpecType());
4285 Result.Type = getExceptionSpecType();
4301 return getExceptionSpecType() == EST_Dynamic
4316 if (!isComputedNoexcept(getExceptionSpecType()))
4326 if (getExceptionSpecType() != EST_Uninstantiated &&
[all …]
H A DDecl.h2662 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
2666 return FPT ? FPT->getExceptionSpecType() : EST_None; in getExceptionSpecType()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DType.cpp3241 if (getExceptionSpecType() == EST_Dynamic) { in FunctionProtoType()
3261 else if (isComputedNoexcept(getExceptionSpecType())) { in FunctionProtoType()
3263 assert((getExceptionSpecType() == EST_DependentNoexcept) == in FunctionProtoType()
3274 else if (getExceptionSpecType() == EST_Uninstantiated) { in FunctionProtoType()
3282 } else if (getExceptionSpecType() == EST_Unevaluated) { in FunctionProtoType()
3292 if (getExceptionSpecType() == EST_Dynamic || in FunctionProtoType()
3293 getExceptionSpecType() == EST_DependentNoexcept) { in FunctionProtoType()
3345 switch (getExceptionSpecType()) { in canThrow()
H A DTypePrinter.cpp818 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification()
828 } else if (EST_NoThrow == getExceptionSpecType()) { in printExceptionSpecification()
830 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification()
834 if (isComputedNoexcept(getExceptionSpecType())) { in printExceptionSpecification()
H A DDeclPrinter.cpp719 if (FT->getExceptionSpecType() == EST_MSAny) in VisitFunctionDecl()
729 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) { in VisitFunctionDecl()
731 if (isComputedNoexcept(FT->getExceptionSpecType())) { in VisitFunctionDecl()
H A DASTStructuralEquivalence.cpp683 auto Spec1 = Proto1->getExceptionSpecType(); in IsEquivalentExceptionSpec()
684 auto Spec2 = Proto2->getExceptionSpecType(); in IsEquivalentExceptionSpec()
H A DItaniumMangle.cpp3246 if (isComputedNoexcept(T->getExceptionSpecType())) { in mangleType()
3251 assert(T->getExceptionSpecType() == EST_Dynamic); in mangleType()
H A DASTContext.cpp6608 (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) || in isSameEntity()
6609 isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) && in isSameEntity()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCoroutine.cpp136 if (isNoexceptExceptionSpec(Proto->getExceptionSpecType()) && in memberCallExpressionCanThrow()
H A DCGException.cpp479 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec()
586 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
H A DCGCall.cpp1769 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in AddAttributesFromFunctionProtoType()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h1416 switch (getExceptionSpecType()) { in destroy()
1502 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
H A DSema.h6304 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
6329 ESI.Type = getExceptionSpecType(); in getExceptionSpec()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp3488 bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType()); in attachPreviousDeclImpl()
3490 isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType()); in attachPreviousDeclImpl()
4511 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in UpdateDecl()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXType.cpp791 return getExternalExceptionSpecificationKind(FD->getExceptionSpecType()); in clang_getExceptionSpecificationType()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDeclCXX.cpp2319 bool NeedLateParse = FTI.getExceptionSpecType() == EST_Unparsed; in HandleMemberFunctionDeclDelays()
2348 if (FTI.getExceptionSpecType() == EST_Unparsed) { in HandleMemberFunctionDeclDelays()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5243 if (isUnresolvedExceptionSpec(FnTy->getExceptionSpecType())) in AST_POLYMORPHIC_MATCHER()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp2683 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()

12