Home
last modified time | relevance | path

Searched refs:ValueStmt (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td30 def ValueStmt : StmtNode<Stmt, 1>;
31 def LabelStmt : StmtNode<ValueStmt>;
32 def AttributedStmt : StmtNode<ValueStmt>;
58 def Expr : StmtNode<ValueStmt, 1>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2017 class ValueStmt : public Stmt {
2024 const ValueStmt *ConstThis = this;
2036 class LabelStmt : public ValueStmt {
2044 : ValueStmt(LabelStmtClass), TheDecl(D), SubStmt(substmt) {
2049 explicit LabelStmt(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {}
2084 : public ValueStmt,
2093 : ValueStmt(AttributedStmtClass), SubStmt(SubStmt) {
2100 : ValueStmt(AttributedStmtClass, Empty) {
H A DExpr.h110 class Expr : public ValueStmt {
122 : ValueStmt(SC) { in Expr()
131 explicit Expr(StmtClass SC, EmptyShell) : ValueStmt(SC) { } in Expr()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp1300 const Stmt *ValueStmt = S; in checkBind() local
1302 ValueStmt = ValueExpr; in checkBind()
1309 CK_NullPassedToNonnull, N, nullptr, C, ValueStmt); in checkBind()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp404 const Expr *ValueStmt::getExprStmt() const { in getExprStmt()
416 } while (isa<ValueStmt>(S)); in getExprStmt()
H A DComputeDependence.cpp181 dyn_cast_or_null<ValueStmt>(E->getSubStmt()->getStmtExprResult())) in computeDependence()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp15660 dyn_cast<ValueStmt>(Compound->getStmtExprResult())) { in BuildStmtExpr()