Home
last modified time | relevance | path

Searched refs:AssertExpr (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDeclCXX.h3166 Expr *AssertExpr, StringLiteral *Message, in StaticAssertDecl() argument
3169 AssertExprAndFailed(AssertExpr, Failed), Message(Message), in StaticAssertDecl()
3175 Expr *AssertExpr, StringLiteral *Message,
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDeclCXX.cpp2188 Expr *AssertExpr, in Create() argument
2192 return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message, in Create()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseDeclCXX.cpp706 ExprResult AssertExpr(ParseConstantExpression()); in ParseStaticAssertDeclaration() local
707 if (AssertExpr.isInvalid()) { in ParseStaticAssertDeclaration()
746 AssertExpr.get(), in ParseStaticAssertDeclaration()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDeclCXX.cpp12122 Expr *AssertExpr, in ActOnStaticAssertDeclaration() argument
12128 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression)) in ActOnStaticAssertDeclaration()
12131 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr, in ActOnStaticAssertDeclaration()
12136 Expr *AssertExpr, in BuildStaticAssertDeclaration() argument
12140 assert(AssertExpr != nullptr && "Expected non-null condition"); in BuildStaticAssertDeclaration()
12141 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() && in BuildStaticAssertDeclaration()
12145 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); in BuildStaticAssertDeclaration()
12161 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); in BuildStaticAssertDeclaration()
12167 AssertExpr, AssertMessage, RParenLoc, in BuildStaticAssertDeclaration()
HDSemaTemplateInstantiateDecl.cpp759 Expr *AssertExpr = D->getAssertExpr(); in VisitStaticAssertDecl() local
766 = SemaRef.SubstExpr(AssertExpr, TemplateArgs); in VisitStaticAssertDecl()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h5241 Expr *AssertExpr,
5245 Expr *AssertExpr,