Searched defs:ExceptionSpecType (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Sema/
H A DDeclSpec.h1120 /// ExceptionSpecType - An ExceptionSpecificationType value.
1121 unsigned ExceptionSpecType : 3; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1245 return static_cast<ExceptionSpecificationType>(ExceptionSpecType);
/external/clang/include/clang/AST/
H A DType.h2742 ExceptionSpecType(EST_None), RefQualifier(RQ_None),
2751 ExceptionSpecificationType ExceptionSpecType; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
2782 /// ExceptionSpecType - The type of exception specification this function has.
2783 unsigned ExceptionSpecType : 3;
2839 EPI.ExceptionSpecType = getExceptionSpecType();
2842 if (EPI.ExceptionSpecType == EST_Dynamic) {
2845 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) {
2847 } else if (EPI.ExceptionSpecType == EST_Uninstantiated) {
2850 } else if (EPI.ExceptionSpecType == EST_Unevaluated) {
2860 return static_cast<ExceptionSpecificationType>(ExceptionSpecType);
[all...]

Completed in 351 milliseconds