Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DExceptionSpecificationType.h26 EST_BasicNoexcept, ///< noexcept enumerator
45 return ESpecType == EST_BasicNoexcept || isComputedNoexcept(ESpecType); in isNoexceptExceptionSpec()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp361 ESI.Type = EST_BasicNoexcept; in CheckEquivalentExceptionSpec()
413 case EST_BasicNoexcept: in CheckEquivalentExceptionSpec()
H A DSemaExprCXX.cpp2816 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; in DeclareGlobalAllocationFunction()
6024 if (EST1 == EST_BasicNoexcept) return ESI2; in mergeExceptionSpecs()
6025 if (EST2 == EST_BasicNoexcept) return ESI1; in mergeExceptionSpecs()
6046 case EST_BasicNoexcept: in mergeExceptionSpecs()
H A DSemaDeclCXX.cpp171 EST = EST_BasicNoexcept; in CalledDecl()
194 case EST_BasicNoexcept: in CalledDecl()
200 if (ComputedEST == EST_BasicNoexcept) in CalledDecl()
15388 case EST_BasicNoexcept: in checkThisInStaticMemberFunctionExceptionSpec()
15499 ESI.Type = EST_BasicNoexcept; in checkExceptionSpecification()
H A DSemaTemplateInstantiateDecl.cpp3755 EPI.ExceptionSpec.Type != EST_BasicNoexcept && in InitFunctionInstantiation()
H A DSemaDecl.cpp8637 FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept))); in ActOnFunctionDeclarator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseDeclCXX.cpp3555 return EST_BasicNoexcept; in tryParseExceptionSpecification()
3608 NoexceptType = EST_BasicNoexcept; in tryParseExceptionSpecification()
3612 NoexceptType = EST_BasicNoexcept; in tryParseExceptionSpecification()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprComplex.cpp623 FunctionProtoType::ExceptionSpecInfo(EST_BasicNoexcept)); in EmitComplexBinOpLibCall()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp3624 if (ESI.Type == EST_BasicNoexcept) in isCanonicalExceptionSpecification()
3742 case EST_DynamicNone: case EST_BasicNoexcept: case EST_NoexceptTrue: in getFunctionTypeInternal()
3743 CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept; in getFunctionTypeInternal()
9570 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; in GetBuiltinType()
H A DType.cpp2991 case EST_BasicNoexcept: in canThrow()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h3844 case EST_BasicNoexcept:
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h4769 : Self(&Self), ComputedEST(EST_BasicNoexcept) { in ImplicitExceptionSpecification()