Searched defs:AssertExpr (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/AST/
H A DDeclCXX.cpp2018 Expr *AssertExpr,
2022 return new (C) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
2016 Create(ASTContext &C, DeclContext *DC, SourceLocation StaticAssertLoc, Expr *AssertExpr, StringLiteral *Message, SourceLocation RParenLoc, bool Failed) argument
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp544 Expr *AssertExpr = D->getAssertExpr(); local
551 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
H A DSemaDeclCXX.cpp9791 Expr *AssertExpr,
9796 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9799 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9804 Expr *AssertExpr,
9808 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9812 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9827 << Msg.str() << AssertExpr->getSourceRange();
9833 AssertExpr, AssertMessage, RParenLoc,
9790 ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, Expr *AssertExpr, Expr *AssertMessageExpr, SourceLocation RParenLoc) argument
9803 BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, Expr *AssertExpr, StringLiteral *AssertMessage, SourceLocation RParenLoc, bool Failed) argument
/external/clang/include/clang/AST/
H A DDeclCXX.h2908 Expr *AssertExpr, StringLiteral *Message,
2911 AssertExprAndFailed(AssertExpr, Failed), Message(Message),
2917 Expr *AssertExpr, StringLiteral *Message,
2907 StaticAssertDecl(DeclContext *DC, SourceLocation StaticAssertLoc, Expr *AssertExpr, StringLiteral *Message, SourceLocation RParenLoc, bool Failed) argument

Completed in 137 milliseconds