Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaExceptionSpec.cpp142 if (FPT->getExceptionSpecType() == EST_Unparsed) { in ResolveExceptionSpec()
147 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in ResolveExceptionSpec()
155 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType())) in ResolveExceptionSpec()
159 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated) in ResolveExceptionSpec()
264 FunctionProtoType::ExceptionSpecInfo ESI = OldProto->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
281 switch (OldProto->getExceptionSpecType()) { in CheckEquivalentExceptionSpec()
412 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
413 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
581 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType(); in CheckExceptionSpecSubset()
602 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType(); in CheckExceptionSpecSubset()
[all …]
H A DSemaTemplateVariadic.cpp774 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) { in containsUnexpandedParameterPacks()
781 } else if (Chunk.Fun.getExceptionSpecType() == EST_ComputedNoexcept && in containsUnexpandedParameterPacks()
H A DSemaType.cpp2846 if (IsTypedefName && FTI.getExceptionSpecType()) in GetFullTypeForDeclarator()
2981 if (FTI.getExceptionSpecType() == EST_Dynamic) { in GetFullTypeForDeclarator()
2991 } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) { in GetFullTypeForDeclarator()
2996 FTI.getExceptionSpecType(), in GetFullTypeForDeclarator()
H A DSemaDeclCXX.cpp163 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl()
5108 if (FPT->getExceptionSpecType() != EST_Unevaluated) in EvaluateImplicitExceptionSpec()
5122 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) in EvaluateImplicitExceptionSpec()
5251 if (Type->getExceptionSpecType() == EST_Uninstantiated) { in CheckExplicitlyDefaultedSpecialMember()
5302 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed) in CheckExplicitlyDefaultedMemberExceptionSpec()
13382 switch (Proto->getExceptionSpecType()) { in checkThisInStaticMemberFunctionExceptionSpec()
H A DSemaTemplateInstantiateDecl.cpp3129 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
H A DSemaDecl.cpp6668 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { in CreateNewFunctionDecl()
H A DSemaExpr.cpp11669 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in MarkFunctionReferenced()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DType.h2995 if (getExceptionSpecType() != EST_ComputedNoexcept)
3018 EPI.ExceptionSpec.Type = getExceptionSpecType();
3037 ExceptionSpecificationType getExceptionSpecType() const {
3042 return getExceptionSpecType() != EST_None;
3046 return isDynamicExceptionSpec(getExceptionSpecType());
3050 return isNoexceptExceptionSpec(getExceptionSpecType());
3070 if (getExceptionSpecType() != EST_ComputedNoexcept)
3080 if (getExceptionSpecType() != EST_Uninstantiated &&
3081 getExceptionSpecType() != EST_Unevaluated)
3090 if (getExceptionSpecType() != EST_Uninstantiated)
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DType.cpp1628 if (getExceptionSpecType() == EST_Dynamic) { in FunctionProtoType()
1643 } else if (getExceptionSpecType() == EST_ComputedNoexcept) { in FunctionProtoType()
1656 } else if (getExceptionSpecType() == EST_Uninstantiated) { in FunctionProtoType()
1665 } else if (getExceptionSpecType() == EST_Unevaluated) { in FunctionProtoType()
1694 ExceptionSpecificationType est = getExceptionSpecType(); in getNoexceptSpec()
1718 ExceptionSpecificationType EST = getExceptionSpecType(); in isNothrow()
H A DDeclPrinter.cpp483 if (FT->getExceptionSpecType() == EST_MSAny) in VisitFunctionDecl()
493 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) { in VisitFunctionDecl()
495 if (FT->getExceptionSpecType() == EST_ComputedNoexcept) { in VisitFunctionDecl()
H A DTypePrinter.cpp591 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification()
601 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification()
603 if (getExceptionSpecType() == EST_ComputedNoexcept) { in printExceptionSpecification()
H A DASTImporter.cpp548 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType()) in IsStructurallyEquivalent()
550 if (Proto1->getExceptionSpecType() == EST_Dynamic) { in IsStructurallyEquivalent()
559 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) { in IsStructurallyEquivalent()
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h1280 if (getExceptionSpecType() == EST_Dynamic) in destroy()
1282 else if (getExceptionSpecType() == EST_Unparsed) in destroy()
1341 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
H A DSema.h4056 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
4078 ESI.Type = getExceptionSpecType(); in getExceptionSpec()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGException.cpp505 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec()
579 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp208 Record.push_back(T->getExceptionSpecType()); in addExceptionSpec()
209 if (T->getExceptionSpecType() == EST_Dynamic) { in addExceptionSpec()
213 } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) { in addExceptionSpec()
215 } else if (T->getExceptionSpecType() == EST_Uninstantiated) { in addExceptionSpec()
218 } else if (T->getExceptionSpecType() == EST_Unevaluated) { in addExceptionSpec()
237 T->getRefQualifier() || T->getExceptionSpecType() != EST_None) in VisitFunctionProtoType()
H A DASTReaderDecl.cpp2783 isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in attachPreviousDeclImpl()
2784 !isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType())) { in attachPreviousDeclImpl()
3648 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in UpdateDecl()
/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp1893 if (FTI.getExceptionSpecType() == EST_Unparsed) { in HandleMemberFunctionDeclDelays()
/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp1774 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()