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

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp115 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
123 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType()))
127 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated)
220 EPI.ExceptionSpecType = OldProto->getExceptionSpecType();
258 switch (OldProto->getExceptionSpecType()) {
392 ExceptionSpecificationType OldEST = Old->getExceptionSpecType();
393 ExceptionSpecificationType NewEST = New->getExceptionSpecType();
570 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType();
591 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType();
H A DSemaType.cpp2726 if (IsTypedefName && FTI.getExceptionSpecType())
2862 if (FTI.getExceptionSpecType() == EST_Dynamic) {
2872 } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) {
2876 S.checkExceptionSpecification(FTI.getExceptionSpecType(),
H A DSemaTemplateInstantiateDecl.cpp2555 assert(Proto->getExceptionSpecType() != EST_Uninstantiated);
2671 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2685 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
H A DSemaDeclCXX.cpp161 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
4385 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4400 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4527 if (Type->getExceptionSpecType() == EST_Uninstantiated) {
12063 switch (Proto->getExceptionSpecType()) {
H A DSemaDecl.cpp5777 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
H A DSemaExpr.cpp10847 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2864 if (getExceptionSpecType() != EST_ComputedNoexcept)
2887 EPI.ExceptionSpecType = getExceptionSpecType();
2907 ExceptionSpecificationType getExceptionSpecType() const {
2912 return getExceptionSpecType() != EST_None;
2916 return isDynamicExceptionSpec(getExceptionSpecType());
2920 return isNoexceptExceptionSpec(getExceptionSpecType());
2938 if (getExceptionSpecType() != EST_ComputedNoexcept)
2948 if (getExceptionSpecType() != EST_Uninstantiated &&
2949 getExceptionSpecType() != EST_Unevaluated)
2958 if (getExceptionSpecType() !
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp462 if (FT->getExceptionSpecType() == EST_MSAny)
472 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) {
474 if (FT->getExceptionSpecType() == EST_ComputedNoexcept) {
H A DDumpXML.cpp984 switch (T->getExceptionSpecType()) {
1006 setFlag("any", T->getExceptionSpecType() == EST_MSAny);
H A DType.cpp1620 if (getExceptionSpecType() == EST_Dynamic) {
1634 } else if (getExceptionSpecType() == EST_ComputedNoexcept) {
1646 } else if (getExceptionSpecType() == EST_Uninstantiated) {
1654 } else if (getExceptionSpecType() == EST_Unevaluated) {
1670 ExceptionSpecificationType est = getExceptionSpecType();
H A DTypePrinter.cpp561 if (getExceptionSpecType() == EST_MSAny)
571 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) {
573 if (getExceptionSpecType() == EST_ComputedNoexcept) {
H A DASTImporter.cpp533 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
535 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
544 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) {
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1225 if (getExceptionSpecType() == EST_Dynamic)
1281 ExceptionSpecificationType getExceptionSpecType() const { function in struct:clang::DeclaratorChunk::FunctionTypeInfo
H A DSema.h3590 ExceptionSpecificationType getExceptionSpecType() const { function in class:clang::Sema::ImplicitExceptionSpecification
3611 EPI.ExceptionSpecType = getExceptionSpecType();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGException.cpp499 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
567 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp195 Record.push_back(T->getExceptionSpecType());
196 if (T->getExceptionSpecType() == EST_Dynamic) {
200 } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) {
202 } else if (T->getExceptionSpecType() == EST_Uninstantiated) {
205 } else if (T->getExceptionSpecType() == EST_Unevaluated) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp1423 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&

Completed in 597 milliseconds