Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaExceptionSpec.cpp115 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in ResolveExceptionSpec()
123 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType())) in ResolveExceptionSpec()
127 if (FPT->getExceptionSpecType() == EST_Unevaluated) in ResolveExceptionSpec()
220 EPI.ExceptionSpecType = OldProto->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
258 switch (OldProto->getExceptionSpecType()) { in CheckEquivalentExceptionSpec()
392 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
393 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
570 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType(); in CheckExceptionSpecSubset()
591 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType(); in CheckExceptionSpecSubset()
DSemaTemplateInstantiateDecl.cpp2466 assert(Proto->getExceptionSpecType() != EST_Uninstantiated); in InstantiateExceptionSpec()
2582 EPI.ExceptionSpecType = Proto->getExceptionSpecType(); in InstantiateExceptionSpec()
2596 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
DSemaType.cpp2590 if (IsTypedefName && FTI.getExceptionSpecType()) in GetFullTypeForDeclarator()
2726 if (FTI.getExceptionSpecType() == EST_Dynamic) { in GetFullTypeForDeclarator()
2736 } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) { in GetFullTypeForDeclarator()
2740 S.checkExceptionSpecification(FTI.getExceptionSpecType(), in GetFullTypeForDeclarator()
DSemaDeclCXX.cpp142 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl()
4240 if (FPT->getExceptionSpecType() != EST_Unevaluated) in EvaluateImplicitExceptionSpec()
4255 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) in EvaluateImplicitExceptionSpec()
11730 switch (Proto->getExceptionSpecType()) { in checkThisInStaticMemberFunctionExceptionSpec()
DSemaDecl.cpp5665 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { in CreateNewFunctionDecl()
DSemaExpr.cpp10545 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in MarkFunctionReferenced()
/external/clang/include/clang/AST/
DType.h2852 if (getExceptionSpecType() != EST_ComputedNoexcept)
2875 EPI.ExceptionSpecType = getExceptionSpecType();
2895 ExceptionSpecificationType getExceptionSpecType() const {
2900 return getExceptionSpecType() != EST_None;
2904 return isDynamicExceptionSpec(getExceptionSpecType());
2908 return isNoexceptExceptionSpec(getExceptionSpecType());
2926 if (getExceptionSpecType() != EST_ComputedNoexcept)
2936 if (getExceptionSpecType() != EST_Uninstantiated &&
2937 getExceptionSpecType() != EST_Unevaluated)
2946 if (getExceptionSpecType() != EST_Uninstantiated)
[all …]
/external/clang/lib/AST/
DDeclPrinter.cpp459 if (FT->getExceptionSpecType() == EST_MSAny) in VisitFunctionDecl()
469 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) { in VisitFunctionDecl()
471 if (FT->getExceptionSpecType() == EST_ComputedNoexcept) { in VisitFunctionDecl()
DType.cpp1614 if (getExceptionSpecType() == EST_Dynamic) { in FunctionProtoType()
1628 } else if (getExceptionSpecType() == EST_ComputedNoexcept) { in FunctionProtoType()
1640 } else if (getExceptionSpecType() == EST_Uninstantiated) { in FunctionProtoType()
1648 } else if (getExceptionSpecType() == EST_Unevaluated) { in FunctionProtoType()
1664 ExceptionSpecificationType est = getExceptionSpecType(); in getNoexceptSpec()
DTypePrinter.cpp561 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification()
571 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification()
573 if (getExceptionSpecType() == EST_ComputedNoexcept) { in printExceptionSpecification()
DDumpXML.cpp982 switch (T->getExceptionSpecType()) { in visitFunctionProtoTypeAttrs()
1004 setFlag("any", T->getExceptionSpecType() == EST_MSAny); in visitFunctionProtoTypeChildren()
DASTImporter.cpp533 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType()) in IsStructurallyEquivalent()
535 if (Proto1->getExceptionSpecType() == EST_Dynamic) { in IsStructurallyEquivalent()
544 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) { in IsStructurallyEquivalent()
/external/clang/include/clang/Sema/
DDeclSpec.h1207 if (getExceptionSpecType() == EST_Dynamic) in destroy()
1263 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
DSema.h3527 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
3548 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.cpp195 Record.push_back(T->getExceptionSpecType()); in VisitFunctionProtoType()
196 if (T->getExceptionSpecType() == EST_Dynamic) { in VisitFunctionProtoType()
200 } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) { in VisitFunctionProtoType()
202 } else if (T->getExceptionSpecType() == EST_Uninstantiated) { in VisitFunctionProtoType()
205 } else if (T->getExceptionSpecType() == EST_Unevaluated) { in VisitFunctionProtoType()
/external/clang/lib/Analysis/
DCFG.cpp1418 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()