Home
last modified time | relevance | path

Searched refs:NoexceptExpr (Results 1 – 20 of 20) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp467 ExprResult NoexceptExpr; in ParseLexedMethodDeclaration() local
473 DynamicExceptionRanges, NoexceptExpr, in ParseLexedMethodDeclaration()
484 NoexceptExpr.isUsable()? in ParseLexedMethodDeclaration()
485 NoexceptExpr.get() : nullptr); in ParseLexedMethodDeclaration()
H A DParseDeclCXX.cpp3768 ExprResult &NoexceptExpr, in tryParseExceptionSpecification() argument
3788 NoexceptExpr = nullptr; in tryParseExceptionSpecification()
3835 NoexceptExpr = ParseConstantExpression(); in tryParseExceptionSpecification()
3837 if (!NoexceptExpr.isInvalid()) { in tryParseExceptionSpecification()
3838 NoexceptExpr = Actions.ActOnNoexceptSpec(KeywordLoc, NoexceptExpr.get(), in tryParseExceptionSpecification()
H A DParseExprCXX.cpp1348 ExprResult NoexceptExpr; in ParseLambdaExpressionAfterIntroducer() local
1352 DynamicExceptionRanges, NoexceptExpr, ExceptionSpecTokens); in ParseLambdaExpressionAfterIntroducer()
1390 NoexceptExpr.isUsable() ? NoexceptExpr.get() : nullptr, in ParseLambdaExpressionAfterIntroducer()
H A DParseDecl.cpp6527 ExprResult NoexceptExpr; in ParseFunctionDeclarator() local
6623 NoexceptExpr, in ParseFunctionDeclarator()
6673 NoexceptExpr.isUsable() ? NoexceptExpr.get() : nullptr, in ParseFunctionDeclarator()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicWriter.h213 asImpl().writeExprRef(esi.NoexceptExpr); in writeExceptionSpecInfo()
H A DAbstractBasicReader.h228 esi.NoexceptExpr = asImpl().readExprRef(); in readExceptionSpecInfo()
H A DType.h3952 Expr *NoexceptExpr = nullptr;
4154 Result.NoexceptExpr = getNoexceptExpr();
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp176 Expr *NoexceptExpr, in getFunction() argument
212 I.Fun.NoexceptExpr = nullptr; in getFunction()
272 I.Fun.NoexceptExpr = NoexceptExpr; in getFunction()
H A DSemaExceptionSpec.cpp82 Expr *NoexceptExpr, in ActOnNoexceptSpec() argument
85 ExprResult Converted = CheckBooleanCondition(NoexceptLoc, NoexceptExpr); in ActOnNoexceptSpec()
91 CXXBoolLiteralExpr(false, Context.BoolTy, NoexceptExpr->getBeginLoc()); in ActOnNoexceptSpec()
H A DSemaTemplateVariadic.cpp948 Chunk.Fun.NoexceptExpr->containsUnexpandedParameterPack()) in containsUnexpandedParameterPacks()
H A DTreeTransform.h5942 ExprResult NoexceptExpr = getDerived().TransformExpr(ESI.NoexceptExpr); in TransformExceptionSpec() local
5943 if (NoexceptExpr.isInvalid()) in TransformExceptionSpec()
5947 NoexceptExpr = in TransformExceptionSpec()
5948 getSema().ActOnNoexceptSpec(Loc, NoexceptExpr.get(), EST); in TransformExceptionSpec()
5949 if (NoexceptExpr.isInvalid()) in TransformExceptionSpec()
5952 if (ESI.NoexceptExpr != NoexceptExpr.get() || EST != ESI.Type) in TransformExceptionSpec()
5954 ESI.NoexceptExpr = NoexceptExpr.get(); in TransformExceptionSpec()
H A DSemaTemplateDeduction.cpp1834 Expr *NoexceptExpr = FunctionProtoParam->getNoexceptExpr(); in DeduceTemplateArgumentsByTypeMatch() local
1836 NoexceptExpr ? getDeducedParameterFromExpr(Info, NoexceptExpr) in DeduceTemplateArgumentsByTypeMatch()
H A DSemaDeclCXX.cpp17922 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, in checkExceptionSpecification() argument
17954 assert((NoexceptExpr->isTypeDependent() || in checkExceptionSpecification()
17955 NoexceptExpr->getType()->getCanonicalTypeUnqualified() == in checkExceptionSpecification()
17958 if (IsTopLevel && DiagnoseUnexpandedParameterPack(NoexceptExpr)) { in checkExceptionSpecification()
17963 ESI.NoexceptExpr = NoexceptExpr; in checkExceptionSpecification()
17973 Expr *NoexceptExpr) { in actOnDelayedExceptionSpecification() argument
17989 DynamicExceptionRanges, NoexceptExpr, Exceptions, in actOnDelayedExceptionSpecification()
H A DSemaType.cpp5350 Expr *NoexceptExpr = nullptr; in GetFullTypeForDeclarator() local
5363 NoexceptExpr = FTI.NoexceptExpr; in GetFullTypeForDeclarator()
5370 NoexceptExpr, in GetFullTypeForDeclarator()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3203 assert(epi.ExceptionSpec.NoexceptExpr && "computed noexcept with no expr"); in FunctionProtoType()
3205 epi.ExceptionSpec.NoexceptExpr->isValueDependent()); in FunctionProtoType()
3208 *getTrailingObjects<Expr *>() = epi.ExceptionSpec.NoexceptExpr; in FunctionProtoType()
3211 toTypeDependence(epi.ExceptionSpec.NoexceptExpr->getDependence()) & in FunctionProtoType()
3365 epi.ExceptionSpec.NoexceptExpr->Profile(ID, Context, Canonical); in Profile()
H A DASTImporter.cpp1289 ToEPI.ExceptionSpec.NoexceptExpr = in VisitFunctionProtoType()
1290 importChecked(Err, FromEPI.ExceptionSpec.NoexceptExpr); in VisitFunctionProtoType()
3426 FromEPI.ExceptionSpec.NoexceptExpr) { in VisitFunctionDecl()
H A DASTContext.cpp4285 EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr()) in getFunctionTypeInternal()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1356 Expr *NoexceptExpr; member
1638 Expr *NoexceptExpr,
H A DSema.h5899 ESI.NoexceptExpr = Self->ActOnCXXBoolLiteral(SourceLocation(), in getExceptionSpec()
5912 ExprResult ActOnNoexceptSpec(SourceLocation NoexceptLoc, Expr *NoexceptExpr,
5921 Expr *NoexceptExpr,
5937 Expr *NoexceptExpr);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1934 ExprResult &NoexceptExpr,