| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 467 ExprResult NoexceptExpr; in ParseLexedMethodDeclaration() local 473 DynamicExceptionRanges, NoexceptExpr, in ParseLexedMethodDeclaration() 484 NoexceptExpr.isUsable()? in ParseLexedMethodDeclaration() 485 NoexceptExpr.get() : nullptr); in ParseLexedMethodDeclaration()
|
| H A D | ParseDeclCXX.cpp | 3768 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 D | ParseExprCXX.cpp | 1348 ExprResult NoexceptExpr; in ParseLambdaExpressionAfterIntroducer() local 1352 DynamicExceptionRanges, NoexceptExpr, ExceptionSpecTokens); in ParseLambdaExpressionAfterIntroducer() 1390 NoexceptExpr.isUsable() ? NoexceptExpr.get() : nullptr, in ParseLambdaExpressionAfterIntroducer()
|
| H A D | ParseDecl.cpp | 6527 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 D | AbstractBasicWriter.h | 213 asImpl().writeExprRef(esi.NoexceptExpr); in writeExceptionSpecInfo()
|
| H A D | AbstractBasicReader.h | 228 esi.NoexceptExpr = asImpl().readExprRef(); in readExceptionSpecInfo()
|
| H A D | Type.h | 3952 Expr *NoexceptExpr = nullptr; 4154 Result.NoexceptExpr = getNoexceptExpr();
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | DeclSpec.cpp | 176 Expr *NoexceptExpr, in getFunction() argument 212 I.Fun.NoexceptExpr = nullptr; in getFunction() 272 I.Fun.NoexceptExpr = NoexceptExpr; in getFunction()
|
| H A D | SemaExceptionSpec.cpp | 82 Expr *NoexceptExpr, in ActOnNoexceptSpec() argument 85 ExprResult Converted = CheckBooleanCondition(NoexceptLoc, NoexceptExpr); in ActOnNoexceptSpec() 91 CXXBoolLiteralExpr(false, Context.BoolTy, NoexceptExpr->getBeginLoc()); in ActOnNoexceptSpec()
|
| H A D | SemaTemplateVariadic.cpp | 948 Chunk.Fun.NoexceptExpr->containsUnexpandedParameterPack()) in containsUnexpandedParameterPacks()
|
| H A D | TreeTransform.h | 5942 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 D | SemaTemplateDeduction.cpp | 1834 Expr *NoexceptExpr = FunctionProtoParam->getNoexceptExpr(); in DeduceTemplateArgumentsByTypeMatch() local 1836 NoexceptExpr ? getDeducedParameterFromExpr(Info, NoexceptExpr) in DeduceTemplateArgumentsByTypeMatch()
|
| H A D | SemaDeclCXX.cpp | 17922 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 D | SemaType.cpp | 5350 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 D | Type.cpp | 3203 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 D | ASTImporter.cpp | 1289 ToEPI.ExceptionSpec.NoexceptExpr = in VisitFunctionProtoType() 1290 importChecked(Err, FromEPI.ExceptionSpec.NoexceptExpr); in VisitFunctionProtoType() 3426 FromEPI.ExceptionSpec.NoexceptExpr) { in VisitFunctionDecl()
|
| H A D | ASTContext.cpp | 4285 EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr()) in getFunctionTypeInternal()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 1356 Expr *NoexceptExpr; member 1638 Expr *NoexceptExpr,
|
| H A D | Sema.h | 5899 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 D | Parser.h | 1934 ExprResult &NoexceptExpr,
|