Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaExceptionSpec.cpp103 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in ResolveExceptionSpec()
111 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType())) in ResolveExceptionSpec()
115 if (FPT->getExceptionSpecType() == EST_Unevaluated) in ResolveExceptionSpec()
179 EPI.ExceptionSpecType = OldProto->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
216 switch (OldProto->getExceptionSpecType()) { in CheckEquivalentExceptionSpec()
347 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
348 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
525 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType(); in CheckExceptionSpecSubset()
546 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType(); in CheckExceptionSpecSubset()
DSemaType.cpp2416 if (IsTypedefName && FTI.getExceptionSpecType()) in GetFullTypeForDeclarator()
2542 if (FTI.getExceptionSpecType() == EST_Dynamic) { in GetFullTypeForDeclarator()
2552 } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) { in GetFullTypeForDeclarator()
2556 S.checkExceptionSpecification(FTI.getExceptionSpecType(), in GetFullTypeForDeclarator()
2563 if (FTI.getExceptionSpecType() == EST_None && in GetFullTypeForDeclarator()
DSemaTemplateInstantiateDecl.cpp2382 assert(Proto->getExceptionSpecType() != EST_Uninstantiated); in InstantiateExceptionSpec()
2498 EPI.ExceptionSpecType = Proto->getExceptionSpecType(); in InstantiateExceptionSpec()
2512 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
DSemaDeclCXX.cpp141 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl()
4027 if (FPT->getExceptionSpecType() != EST_Unevaluated) in EvaluateImplicitExceptionSpec()
4042 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) in EvaluateImplicitExceptionSpec()
11116 switch (Proto->getExceptionSpecType()) { in checkThisInStaticMemberFunctionExceptionSpec()
DSemaDecl.cpp5049 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { in CreateNewFunctionDecl()
DSemaExpr.cpp10268 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in MarkFunctionReferenced()
/external/clang/lib/AST/
DTypePrinter.cpp563 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification()
573 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification()
575 if (getExceptionSpecType() == EST_ComputedNoexcept) { in printExceptionSpecification()
1350 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification()
1360 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification()
1362 if (getExceptionSpecType() == EST_ComputedNoexcept) { in printExceptionSpecification()
DType.cpp1564 if (getExceptionSpecType() == EST_Dynamic) { in FunctionProtoType()
1578 } else if (getExceptionSpecType() == EST_ComputedNoexcept) { in FunctionProtoType()
1590 } else if (getExceptionSpecType() == EST_Uninstantiated) { in FunctionProtoType()
1598 } else if (getExceptionSpecType() == EST_Unevaluated) { in FunctionProtoType()
1614 ExceptionSpecificationType est = getExceptionSpecType(); in getNoexceptSpec()
DDeclPrinter.cpp458 if (FT->getExceptionSpecType() == EST_MSAny) in VisitFunctionDecl()
468 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) { in VisitFunctionDecl()
470 if (FT->getExceptionSpecType() == EST_ComputedNoexcept) { in VisitFunctionDecl()
DDumpXML.cpp989 setFlag("any", T->getExceptionSpecType() == EST_MSAny); in visitFunctionProtoTypeChildren()
DASTImporter.cpp526 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType()) in IsStructurallyEquivalent()
528 if (Proto1->getExceptionSpecType() == EST_Dynamic) { in IsStructurallyEquivalent()
537 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) { in IsStructurallyEquivalent()
/external/clang/include/clang/AST/
DType.h2819 if (getExceptionSpecType() != EST_ComputedNoexcept)
2839 EPI.ExceptionSpecType = getExceptionSpecType();
2859 ExceptionSpecificationType getExceptionSpecType() const {
2864 return getExceptionSpecType() != EST_None;
2868 return isDynamicExceptionSpec(getExceptionSpecType());
2872 return isNoexceptExceptionSpec(getExceptionSpecType());
2890 if (getExceptionSpecType() != EST_ComputedNoexcept)
2900 if (getExceptionSpecType() != EST_Uninstantiated &&
2901 getExceptionSpecType() != EST_Unevaluated)
2910 if (getExceptionSpecType() != EST_Uninstantiated)
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h1197 if (getExceptionSpecType() == EST_Dynamic) in destroy()
1244 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
DSema.h3346 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
3367 EPI.ExceptionSpecType = getExceptionSpecType(); in getEPI()
/external/clang/lib/CodeGen/
DCGException.cpp495 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec()
563 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
/external/clang/lib/Serialization/
DASTWriter.cpp191 Record.push_back(T->getExceptionSpecType()); in VisitFunctionProtoType()
192 if (T->getExceptionSpecType() == EST_Dynamic) { in VisitFunctionProtoType()
196 } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) { in VisitFunctionProtoType()
198 } else if (T->getExceptionSpecType() == EST_Uninstantiated) { in VisitFunctionProtoType()
201 } else if (T->getExceptionSpecType() == EST_Unevaluated) { in VisitFunctionProtoType()
/external/clang/lib/Analysis/
DCFG.cpp1375 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()