Home
last modified time | relevance | path

Searched refs:ESpecType (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/Basic/
DExceptionSpecificationType.h30 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument
31 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()
34 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument
35 return ESpecType == EST_BasicNoexcept || ESpecType == EST_ComputedNoexcept; in isNoexceptExceptionSpec()
/external/clang/lib/Sema/
DDeclSpec.cpp154 ESpecType, in getFunction() argument
179 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
205 switch (ESpecType) { in getFunction()
/external/clang/lib/Parse/
DParseDecl.cpp3688 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local
3739 ESpecType = MaybeParseExceptionSpecification(ESpecRange, in ParseFunctionDeclarator()
3743 if (ESpecType != EST_None) in ParseFunctionDeclarator()
3765 ESpecType, ESpecRange.getBegin(), in ParseFunctionDeclarator()
/external/clang/include/clang/Sema/
DDeclSpec.h1302 ExceptionSpecificationType ESpecType,