Home
last modified time | relevance | path

Searched refs:ExceptionSpecType (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/Sema/
DSemaExceptionSpec.cpp161 EPI.ExceptionSpecType = EST_DynamicNone; in CheckEquivalentExceptionSpec()
175 EPI.ExceptionSpecType = OldProto->getExceptionSpecType(); in CheckEquivalentExceptionSpec()
176 if (EPI.ExceptionSpecType == EST_Dynamic) { in CheckEquivalentExceptionSpec()
179 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) { in CheckEquivalentExceptionSpec()
DSemaTemplateInstantiateDecl.cpp2369 EPI.ExceptionSpecType = Proto->getExceptionSpecType(); in InstantiateExceptionSpec()
2449 EPI.ExceptionSpecType != EST_None && in InitFunctionInstantiation()
2450 EPI.ExceptionSpecType != EST_DynamicNone && in InitFunctionInstantiation()
2451 EPI.ExceptionSpecType != EST_BasicNoexcept) { in InitFunctionInstantiation()
2453 if (EPI.ExceptionSpecType == EST_Uninstantiated) in InitFunctionInstantiation()
2461 EPI.ExceptionSpecType = EST_Uninstantiated; in InitFunctionInstantiation()
DDeclSpec.cpp187 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
DSemaDeclCXX.cpp3847 if (EPI.ExceptionSpecType == EST_Delayed) { in CheckExplicitlyDefaultedDefaultConstructor()
7001 assert(EPI.ExceptionSpecType != EST_Delayed); in ActOnFinishDelayedMemberInitializers()
7338 epi.ExceptionSpecType = exceptSpec.getExceptionSpecType(); in AdjustDestructorExceptionSpec()
11213 EPI.ExceptionSpecType = EST; in checkExceptionSpecification()
11247 EPI.ExceptionSpecType = EST_BasicNoexcept; in checkExceptionSpecification()
DSemaExprCXX.cpp1870 EPI.ExceptionSpecType = EST_Dynamic; in DeclareGlobalAllocationFunction()
1875 EPI.ExceptionSpecType = getLangOpts().CPlusPlus0x ? in DeclareGlobalAllocationFunction()
DSemaLookup.cpp722 EPI.ExceptionSpecType = EST_None; in LookupDirect()
DSemaType.cpp2402 EPI.ExceptionSpecType = EST_BasicNoexcept; in GetFullTypeForDeclarator()
/external/clang/lib/AST/
DType.cpp1505 ExceptionSpecType(epi.ExceptionSpecType), in FunctionProtoType()
1629 !(unsigned(epi.ExceptionSpecType) & ~7) && in Profile()
1634 (epi.ExceptionSpecType << 11)); in Profile()
1635 if (epi.ExceptionSpecType == EST_Dynamic) { in Profile()
1638 } else if (epi.ExceptionSpecType == EST_ComputedNoexcept && epi.NoexceptExpr){ in Profile()
1640 } else if (epi.ExceptionSpecType == EST_Uninstantiated) { in Profile()
DASTContext.cpp2148 EPI.ExceptionSpecType == EST_None && ResultTy.isCanonical() && in getFunctionType()
2169 CanonicalEPI.ExceptionSpecType = EST_None; in getFunctionType()
2193 if (EPI.ExceptionSpecType == EST_Dynamic) in getFunctionType()
2195 else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) { in getFunctionType()
2197 } else if (EPI.ExceptionSpecType == EST_Uninstantiated) { in getFunctionType()
/external/clang/include/clang/AST/
DType.h2703 ExceptionSpecType(EST_None), RefQualifier(RQ_None),
2712 ExceptionSpecificationType ExceptionSpecType;
2744 unsigned ExceptionSpecType : 3;
2800 EPI.ExceptionSpecType = getExceptionSpecType();
2803 if (EPI.ExceptionSpecType == EST_Dynamic) {
2806 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) {
2808 } else if (EPI.ExceptionSpecType == EST_Uninstantiated) {
2819 return static_cast<ExceptionSpecificationType>(ExceptionSpecType);
/external/clang/include/clang/Sema/
DDeclSpec.h1100 unsigned ExceptionSpecType : 3; member
1227 return static_cast<ExceptionSpecificationType>(ExceptionSpecType); in getExceptionSpecType()
DSema.h3125 EPI.ExceptionSpecType = getExceptionSpecType(); in getEPI()
/external/clang/lib/Serialization/
DASTReader.cpp3860 EPI.ExceptionSpecType = EST; in readTypeRecord()