Searched defs:EST (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp434 ExceptionSpecificationType EST local
444 Actions.actOnDelayedExceptionSpecification(LM.Method, EST,
/external/clang/lib/AST/
H A DType.cpp1712 ExceptionSpecificationType EST = getExceptionSpecType(); local
1713 assert(EST != EST_Unevaluated && EST != EST_Uninstantiated);
1714 if (EST == EST_DynamicNone || EST == EST_BasicNoexcept)
1717 if (EST == EST_Dynamic && ResultIfDependent) {
1726 if (EST != EST_ComputedNoexcept)
/external/clang/include/clang/AST/
H A DType.h2895 ExceptionSpecInfo(ExceptionSpecificationType EST) argument
2896 : Type(EST), NoexceptExpr(nullptr), SourceDecl(nullptr),
/external/clang/lib/Serialization/
H A DASTReader.cpp5693 ExceptionSpecificationType EST = local
5695 ESI.Type = EST;
5696 if (EST == EST_Dynamic) {
5700 } else if (EST == EST_ComputedNoexcept) {
5702 } else if (EST == EST_Uninstantiated) {
5705 } else if (EST == EST_Unevaluated) {
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp163 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
166 if (EST == EST_MSAny || EST == EST_None) {
168 ComputedEST = EST;
176 if (EST == EST_BasicNoexcept)
185 if (EST == EST_DynamicNone) {
192 if (EST == EST_ComputedNoexcept) {
210 assert(EST == EST_Dynamic && "EST case not considered earlier.");
13566 bool IsTopLevel, ExceptionSpecificationType EST,
13565 checkExceptionSpecification( bool IsTopLevel, ExceptionSpecificationType EST, ArrayRef<ParsedType> DynamicExceptions, ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, SmallVectorImpl<QualType> &Exceptions, FunctionProtoType::ExceptionSpecInfo &ESI) argument
13622 actOnDelayedExceptionSpecification(Decl *MethodD, ExceptionSpecificationType EST, SourceRange SpecificationRange, ArrayRef<ParsedType> DynamicExceptions, ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr) argument
[all...]

Completed in 910 milliseconds