| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaExceptionSpec.cpp | 142 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 D | SemaTemplateVariadic.cpp | 774 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) { in containsUnexpandedParameterPacks() 781 } else if (Chunk.Fun.getExceptionSpecType() == EST_ComputedNoexcept && in containsUnexpandedParameterPacks()
|
| H A D | SemaType.cpp | 2846 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 D | SemaDeclCXX.cpp | 163 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 D | SemaTemplateInstantiateDecl.cpp | 3129 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
|
| H A D | SemaDecl.cpp | 6668 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { in CreateNewFunctionDecl()
|
| H A D | SemaExpr.cpp | 11669 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in MarkFunctionReferenced()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | Type.h | 2995 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 D | Type.cpp | 1628 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 D | DeclPrinter.cpp | 483 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 D | TypePrinter.cpp | 591 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification() 601 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification() 603 if (getExceptionSpecType() == EST_ComputedNoexcept) { in printExceptionSpecification()
|
| H A D | ASTImporter.cpp | 548 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 D | DeclSpec.h | 1280 if (getExceptionSpecType() == EST_Dynamic) in destroy() 1282 else if (getExceptionSpecType() == EST_Unparsed) in destroy() 1341 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
|
| H A D | Sema.h | 4056 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function 4078 ESI.Type = getExceptionSpecType(); in getExceptionSpec()
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGException.cpp | 505 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec() 579 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 208 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 D | ASTReaderDecl.cpp | 2783 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 D | ParseDeclCXX.cpp | 1893 if (FTI.getExceptionSpecType() == EST_Unparsed) { in HandleMemberFunctionDeclDelays()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Analysis/ |
| H A D | CFG.cpp | 1774 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()
|