Home
last modified time | relevance | path

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

/external/llvm-project/clang/include/clang/Basic/
DExceptionSpecificationType.h35 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument
36 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()
39 inline bool isComputedNoexcept(ExceptionSpecificationType ESpecType) { in isComputedNoexcept() argument
40 return ESpecType >= EST_DependentNoexcept && in isComputedNoexcept()
41 ESpecType <= EST_NoexceptTrue; in isComputedNoexcept()
44 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument
45 return ESpecType == EST_BasicNoexcept || ESpecType == EST_NoThrow || in isNoexceptExceptionSpec()
46 isComputedNoexcept(ESpecType); in isNoexceptExceptionSpec()
49 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument
50 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()
/external/clang/include/clang/Basic/
DExceptionSpecificationType.h33 inline bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType) { in isDynamicExceptionSpec() argument
34 return ESpecType >= EST_DynamicNone && ESpecType <= EST_MSAny; in isDynamicExceptionSpec()
37 inline bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType) { in isNoexceptExceptionSpec() argument
38 return ESpecType == EST_BasicNoexcept || ESpecType == EST_ComputedNoexcept; in isNoexceptExceptionSpec()
41 inline bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType) { in isUnresolvedExceptionSpec() argument
42 return ESpecType == EST_Unevaluated || ESpecType == EST_Uninstantiated; in isUnresolvedExceptionSpec()
/external/llvm-project/clang/lib/Sema/
DDeclSpec.cpp171 ESpecType, in getFunction() argument
206 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
231 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()
254 switch (ESpecType) { in getFunction()
280 assert(ESpecType == EST_None && NumExceptions == 0 && in getFunction()
/external/clang/lib/Sema/
DDeclSpec.cpp169 ESpecType, in getFunction() argument
204 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
215 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()
236 switch (ESpecType) { in getFunction()
/external/clang/lib/Parse/
DParseExprCXX.cpp1175 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local
1181 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false, in ParseLambdaExpressionAfterIntroducer()
1188 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()
1220 ESpecType, ESpecRange, in ParseLambdaExpressionAfterIntroducer()
DParseDecl.cpp5593 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local
5697 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()
5703 if (ESpecType != EST_None) in ParseFunctionDeclarator()
5736 ESpecType, ESpecRange, in ParseFunctionDeclarator()
/external/llvm-project/clang/lib/Parse/
DParseExprCXX.cpp1359 ExceptionSpecificationType ESpecType = EST_None; in ParseLambdaExpressionAfterIntroducer() local
1365 ESpecType = tryParseExceptionSpecification(/*Delayed=*/false, in ParseLambdaExpressionAfterIntroducer()
1372 if (ESpecType != EST_None) in ParseLambdaExpressionAfterIntroducer()
1404 /*RefQualifierLoc=*/NoLoc, MutableLoc, ESpecType, in ParseLambdaExpressionAfterIntroducer()
DParseDecl.cpp6446 ExceptionSpecificationType ESpecType = EST_None; in ParseFunctionDeclarator() local
6542 ESpecType = tryParseExceptionSpecification(Delayed, in ParseFunctionDeclarator()
6548 if (ESpecType != EST_None) in ParseFunctionDeclarator()
6594 ESpecType, ESpecRange, DynamicExceptions.data(), in ParseFunctionDeclarator()
/external/clang/include/clang/Sema/
DDeclSpec.h1539 ExceptionSpecificationType ESpecType,
/external/llvm-project/clang/include/clang/Sema/
DDeclSpec.h1631 ExceptionSpecificationType ESpecType,