Home
last modified time | relevance | path

Searched refs:EST_BasicNoexcept (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DExceptionSpecificationType.h26 EST_BasicNoexcept, ///< noexcept enumerator
45 return ESpecType == EST_BasicNoexcept || ESpecType == EST_NoThrow || in isNoexceptExceptionSpec()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExceptionSpec.cpp378 ESI.Type = EST_BasicNoexcept; in CheckEquivalentExceptionSpec()
438 case EST_BasicNoexcept: in CheckEquivalentExceptionSpec()
H A DSemaLambda.cpp1375 ConvExtInfo.ExceptionSpec.Type = EST_BasicNoexcept; in addFunctionPointerConversion()
H A DSemaExprCXX.cpp3094 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; in DeclareGlobalAllocationFunction()
6694 if (EST1 == EST_BasicNoexcept) return ESI2; in mergeExceptionSpecs()
6695 if (EST2 == EST_BasicNoexcept) return ESI1; in mergeExceptionSpecs()
6716 case EST_BasicNoexcept: in mergeExceptionSpecs()
H A DSemaDeclCXX.cpp180 EST = EST_BasicNoexcept; in CalledDecl()
203 case EST_BasicNoexcept: in CalledDecl()
210 if (ComputedEST == EST_BasicNoexcept) in CalledDecl()
18114 case EST_BasicNoexcept: in checkThisInStaticMemberFunctionExceptionSpec()
18226 ESI.Type = EST_BasicNoexcept; in checkExceptionSpecification()
H A DSemaTemplateInstantiateDecl.cpp4666 EPI.ExceptionSpec.Type != EST_BasicNoexcept && in InitFunctionInstantiation()
H A DSemaType.cpp7716 case EST_BasicNoexcept: in handleFunctionTypeAttr()
H A DSemaDecl.cpp9831 FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept))); in ActOnFunctionDeclarator()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseDeclCXX.cpp3799 return EST_BasicNoexcept; in tryParseExceptionSpecification()
3851 NoexceptType = EST_BasicNoexcept; in tryParseExceptionSpecification()
3855 NoexceptType = EST_BasicNoexcept; in tryParseExceptionSpecification()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXType.cpp757 case EST_BasicNoexcept: in getExternalExceptionSpecificationKind()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprComplex.cpp648 FunctionProtoType::ExceptionSpecInfo(EST_BasicNoexcept)); in EmitComplexBinOpLibCall()
/llvm-project-15.0.7/clang/lib/AST/
H A DJSONNodeDumper.cpp569 case EST_BasicNoexcept: in VisitFunctionProtoType()
H A DASTContext.cpp4328 if (ESI.Type == EST_BasicNoexcept) in isCanonicalExceptionSpecification()
4447 case EST_BasicNoexcept: in getFunctionTypeInternal()
4450 CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept; in getFunctionTypeInternal()
11338 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; in GetBuiltinType()
H A DType.cpp3344 case EST_BasicNoexcept: in canThrow()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h4125 case EST_BasicNoexcept:
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h6143 : Self(&Self), ComputedEST(EST_BasicNoexcept) { in ImplicitExceptionSpecification()