Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExceptionSpec.cpp206 if (FPT->getExceptionSpecType() == EST_Unparsed) { in ResolveExceptionSpec()
211 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in ResolveExceptionSpec()
219 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType())) in ResolveExceptionSpec()
223 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated) in ResolveExceptionSpec()
230 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) { in ResolveExceptionSpec()
254 auto EST = MD->getType()->castAs<FunctionProtoType>()->getExceptionSpecType(); in exceptionSpecNotKnownYet()
366 FunctionProtoType::ExceptionSpecInfo ESI = OldProto->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
413 switch (OldProto->getExceptionSpecType()) { in CheckEquivalentExceptionSpec()
549 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl()
550 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl()
[all …]
H A DSemaTemplateVariadic.cpp940 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) { in containsUnexpandedParameterPacks()
947 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) && in containsUnexpandedParameterPacks()
H A DSemaType.cpp5164 if (IsTypedefName && FTI.getExceptionSpecType() && !LangOpts.CPlusPlus17) in GetFullTypeForDeclarator()
5319 if (FTI.getExceptionSpecType() == EST_Dynamic) { in GetFullTypeForDeclarator()
5329 } else if (isComputedNoexcept(FTI.getExceptionSpecType())) { in GetFullTypeForDeclarator()
5334 FTI.getExceptionSpecType(), in GetFullTypeForDeclarator()
7523 switch (Proto->getExceptionSpecType()) { in handleFunctionTypeAttr()
H A DSemaExprMember.cpp925 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in BuildMemberExpr()
H A DSemaDeclCXX.cpp172 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl()
7275 if (FPT->getExceptionSpecType() != EST_Unevaluated) in EvaluateImplicitExceptionSpec()
8562 if (FD->getExceptionSpecType() == EST_None) { in CheckExplicitlyDefaultedComparison()
17638 switch (Proto->getExceptionSpecType()) { in checkThisInStaticMemberFunctionExceptionSpec()
H A DSemaTemplateDeduction.cpp4381 isUnresolvedExceptionSpec(SpecializationFPT->getExceptionSpecType()) && in DeduceTemplateArguments()
H A DSemaTemplateInstantiateDecl.cpp4387 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
H A DSemaOverload.cpp74 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in CreateFunctionRefExpr()
11837 isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in completeFunctionType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h4077 return getExceptionSpecSize(getExceptionSpecType(), getNumExceptions());
4089 return hasExtraBitfields(getExceptionSpecType());
4122 ExceptionSpecificationType getExceptionSpecType() const {
4128 bool hasExceptionSpec() const { return getExceptionSpecType() != EST_None; }
4132 return isDynamicExceptionSpec(getExceptionSpecType());
4137 return isNoexceptExceptionSpec(getExceptionSpecType());
4150 Result.Type = getExceptionSpecType();
4166 return getExceptionSpecType() == EST_Dynamic
4181 if (!isComputedNoexcept(getExceptionSpecType()))
4191 if (getExceptionSpecType() != EST_Uninstantiated &&
[all …]
H A DDecl.h2530 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
2534 return FPT ? FPT->getExceptionSpecType() : EST_None; in getExceptionSpecType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DType.cpp3181 if (getExceptionSpecType() == EST_Dynamic) { in FunctionProtoType()
3198 else if (isComputedNoexcept(getExceptionSpecType())) { in FunctionProtoType()
3200 assert((getExceptionSpecType() == EST_DependentNoexcept) == in FunctionProtoType()
3211 else if (getExceptionSpecType() == EST_Uninstantiated) { in FunctionProtoType()
3219 } else if (getExceptionSpecType() == EST_Unevaluated) { in FunctionProtoType()
3229 if (getExceptionSpecType() == EST_Dynamic || in FunctionProtoType()
3230 getExceptionSpecType() == EST_DependentNoexcept) { in FunctionProtoType()
3282 switch (getExceptionSpecType()) { in canThrow()
H A DTypePrinter.cpp803 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification()
813 } else if (EST_NoThrow == getExceptionSpecType()) { in printExceptionSpecification()
815 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification()
819 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.cpp630 auto Spec1 = Proto1->getExceptionSpecType(); in IsEquivalentExceptionSpec()
631 auto Spec2 = Proto2->getExceptionSpecType(); in IsEquivalentExceptionSpec()
H A DItaniumMangle.cpp3162 if (isComputedNoexcept(T->getExceptionSpecType())) { in mangleType()
3167 assert(T->getExceptionSpecType() == EST_Dynamic); in mangleType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCoroutine.cpp136 if (isNoexceptExceptionSpec(Proto->getExceptionSpecType()) && in memberCallExpressionCanThrow()
H A DCGException.cpp479 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec()
582 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
H A DCGCall.cpp1730 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in AddAttributesFromFunctionProtoType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h1393 switch (getExceptionSpecType()) { in destroy()
1479 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
H A DSema.h5805 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
5830 ESI.Type = getExceptionSpecType(); in getExceptionSpec()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp3157 (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) || in isSameEntity()
3158 isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) && in isSameEntity()
3625 bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType()); in attachPreviousDeclImpl()
3627 isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType()); in attachPreviousDeclImpl()
4630 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in UpdateDecl()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXType.cpp770 return getExternalExceptionSpecificationKind(FD->getExceptionSpecType()); in clang_getExceptionSpecificationType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp2198 bool NeedLateParse = FTI.getExceptionSpecType() == EST_Unparsed; in HandleMemberFunctionDeclDelays()
2227 if (FTI.getExceptionSpecType() == EST_Unparsed) { in HandleMemberFunctionDeclDelays()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5073 if (isUnresolvedExceptionSpec(FnTy->getExceptionSpecType())) in AST_POLYMORPHIC_MATCHER()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp2586 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()

12